aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2014-05-08 00:38:50 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2014-05-08 00:39:59 +0200
commit844995fc606085af7c102954ee342edfd8cd623a (patch)
treeccba4f3c6bb6cedc9798f76d2f32e32395e887b3 /test/transform/resource/after-ecj
parent7f85149f3959335f1be3e75f3695e00fb1cd3594 (diff)
downloadlombok-844995fc606085af7c102954ee342edfd8cd623a.tar.gz
lombok-844995fc606085af7c102954ee342edfd8cd623a.tar.bz2
lombok-844995fc606085af7c102954ee342edfd8cd623a.zip
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.
Diffstat (limited to 'test/transform/resource/after-ecj')
-rw-r--r--test/transform/resource/after-ecj/MixGetterVal.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/MixGetterVal.java b/test/transform/resource/after-ecj/MixGetterVal.java
index 45fcf989..d9809703 100644
--- a/test/transform/resource/after-ecj/MixGetterVal.java
+++ b/test/transform/resource/after-ecj/MixGetterVal.java
@@ -10,6 +10,8 @@ class MixGetterVal {
public void test() {
final @val int y = x;
m(y);
+ final @val int a = getX();
+ m(a);
}
public @java.lang.SuppressWarnings("all") int getX() {
return this.x;