aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs170/language/LiteralsITD.java
blob: ea25d9d8a61e0018088f654022cf797f9ab98b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
public class LiteralsITD {
  public static void main(String []argv) {
  }
}

aspect Foo {
  before(): execution(* *(..)) {
  }

  public int LiteralsITD.id = 0b100_000;
}