blob: 95a2c82024b4701b2d79dcd3b7d54a949e1f0449 (
plain)
1
2
3
4
5
6
7
8
9
|
public class Foo implements java.util.RandomAccess {
private static final String ONE = "Eén";
{
String value = toString();
System.out.print(value);
System.out.print("Two" + "Four");
}
}
|