Files
lombok/test/transform/resource/before/SynchronizedNameStaticToInstanceRef.java
T
Reinier Zwitserloot e642150998 Updated tests to reflect changes to delombok (delombok now kills super(), because attrib adds them even in places where that's wrong).
Also split up the SynchronizedName test into separate cases for each expected failure mode.
2012-07-16 22:04:39 +02:00

9 lines
216 B
Java

class SynchronizedNameStaticToInstanceRef {
private Object read = new Object();
private static Object READ = new Object();
@lombok.Synchronized("read") static void test3() {
System.out.println("three");
}
}