Files
lombok/test/transform/resource/before/MixGetterVal.java
T
Reinier Zwitserloot 844995fc60 All tests now succeed on all platforms again;
'optional' expected messages added.
expanded some tests.
Added a check if the bootclasspath supports a certain version, i.e. don't try to run a JDK7-only test if AutoClosable isn't available.
2014-05-08 00:39:59 +02:00

15 lines
188 B
Java

import lombok.Getter;
import lombok.val;
class MixGetterVal {
@Getter private int x;
public void m(int z) {}
public void test() {
val y = x;
m(y);
val a = getX();
m(a);
}
}