Skip to content

Commit

Permalink
fix(java): verifier test exposing the compiler implicitly tagging enu…
Browse files Browse the repository at this point in the history
…m values as "static" (#4887)
  • Loading branch information
jaysachs committed Apr 14, 2021
1 parent 04347f6 commit 9b4aace
Showing 1 changed file with 9 additions and 0 deletions.
Expand Up @@ -7,7 +7,16 @@ public class StaticVariables {

//- @bar defines/binding StaticBar
public static int bar;

//- @E defines/binding Enum
enum E {
//- @X defines/binding EnumValue
X,
Y;
}
}

//- StaticFoo.tag/static _
//- StaticBar.tag/static _
//- !{ Enum.tag/static _ }
//- EnumValue.tag/static _

0 comments on commit 9b4aace

Please sign in to comment.