diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-09-18 01:00:46 +0200 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-09-18 01:00:46 +0200 |
commit | a478fd56796eebe0e6b0d49469f4380a75786290 (patch) | |
tree | 08e38a6663b7be383d8fb12e4d6928a3dfcc4618 /test/pretty | |
parent | 9d45a506b1026bdf9a3c76f97c9d4ec52dc92345 (diff) | |
download | lombok-a478fd56796eebe0e6b0d49469f4380a75786290.tar.gz lombok-a478fd56796eebe0e6b0d49469f4380a75786290.tar.bz2 lombok-a478fd56796eebe0e6b0d49469f4380a75786290.zip |
[tests] fixed a test that fails due to, of all things, a javac bug.
Diffstat (limited to 'test/pretty')
-rw-r--r-- | test/pretty/resource/before/ThisParameter.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/pretty/resource/before/ThisParameter.java b/test/pretty/resource/before/ThisParameter.java index d95c0261..e37651cb 100644 --- a/test/pretty/resource/before/ThisParameter.java +++ b/test/pretty/resource/before/ThisParameter.java @@ -1,3 +1,4 @@ +// version 9: the 'this' param option exists in java8, but is bugged, in that annotations are not allowed on them, even without a @Target. The only purpose of the this param is annotations, so, boy, isn't that a punch in the face? import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; |