blob: 24801a2f9b53d65a1707a7154426e23103360588 [file] [log] [blame]
class Foo {
static void func() {
System.out.println(<selection>MySingleton.INSTANCE</selection>);
}
}
public class MySingleton {
public static final MySingleton INSTANCE = new MySingleton();
}