Files

9 lines
115 B
Java

class Test {
{
foo("abc");
}
void foo(final String anObject) {
System.out.println(anObject);
}
}