Files
lombok/test/transform/resource/before/SynchronizedNameNoSuchField.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
199 B
Java

class SynchronizedNameNoSuchField {
private Object read = new Object();
private static Object READ = new Object();
@lombok.Synchronized("write") void test2() {
System.out.println("two");
}
}