Skip to content

Commit

Permalink
Extend presentation/parse-invariants w/ Java annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
dwijnand committed Mar 24, 2020
1 parent de7aa54 commit cc25950
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/files/presentation/parse-invariants/src/a/A.java
@@ -1,5 +1,10 @@
package syntax;

@NoArgs
@Empty()
@Simple(n = 1, c = '2', f = 6.7f, d = 8.9, s = "t", z = A.class, e = P.Pluto, a = @C.I("t"))
@Arrays({ @Array({0, 1, C._2}), @Array(3) })
@Deprecated
class A {
transient volatile int x;
strictfp void test() {
Expand All @@ -11,6 +16,7 @@ synchronized void syncMethod() {}

void thrower() throws Throwable {}

@Deprecated void deprecated() {}
}

strictfp class B {}

0 comments on commit cc25950

Please sign in to comment.