17 lines
366 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: innerclasses/TestBed.java
// <20>2015 MindView LLC: see Copyright.txt
// Putting test code in a nested class.
// {main: TestBed$Tester}
public class TestBed {
public void f() { System.out.println("f()"); }
public static class Tester {
public static void main(String[] args) {
TestBed t = new TestBed();
t.f();
}
}
} /* Output:
f()
*///:~