blob: e4ccd5ab4ba73aaa29c4a15774d0b92c5448efe2 [file] [log] [blame]
import java.io.PrintStream;
class Test {
public static void main() {
new Runnable() {
public void run() {
newMethod().println("Text");
}
}
}
private static PrintStream newMethod() {
return System.out;
}
}