diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-14 16:39:48 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-14 16:39:48 +0100 |
commit | 06581537f24fe31ee096960be496bc503059a95e (patch) | |
tree | 3732f6fe2117c390f9812b5961dd2d95d4293026 /test/transform/resource/before/ValOutersWithGenerics.java | |
parent | 5e9e16a6b98da5a17f5efe785917bc1e92265fc8 (diff) | |
download | lombok-06581537f24fe31ee096960be496bc503059a95e.tar.gz lombok-06581537f24fe31ee096960be496bc503059a95e.tar.bz2 lombok-06581537f24fe31ee096960be496bc503059a95e.zip |
More test files, test files updated to be valid java, and ecj test now goes through the complete compile process. This means val and @Delegate testing is now enabled.
TODO: Update -eclipse tests.
Diffstat (limited to 'test/transform/resource/before/ValOutersWithGenerics.java')
-rw-r--r-- | test/transform/resource/before/ValOutersWithGenerics.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValOutersWithGenerics.java b/test/transform/resource/before/ValOutersWithGenerics.java new file mode 100644 index 00000000..145f812c --- /dev/null +++ b/test/transform/resource/before/ValOutersWithGenerics.java @@ -0,0 +1,26 @@ +import java.util.*; +import lombok.val; + +public class ValOutersWithGenerics<Z> { + class Inner { + } + + public void testOutersWithGenerics() { + val foo = ""; + List<Inner> list = new ArrayList<Inner>(); + val elem = list.get(0); + } + + public void testLocalClasses() { + class Local<A> {} + + val q = new Local<String>(); + } + + static class SubClass extends ValOutersWithGenerics<String> { + public void testSubClassOfOutersWithGenerics() { + List<Inner> list = new ArrayList<Inner>(); + val elem = list.get(0); + } + } +} |