1// @target: es6
2class B {
3 "hello" = 10;
4 0b110 = "world";
5 0o23534 = "WORLD";
6 20 = "twenty";
7 "foo"() { }
8 0b1110() {}
9 11() { }
10 interface() { }
11 static "hi" = 10000;
12 static 22 = "twenty-two";
13 static 0b101 = "binary";
14 static 0o3235 = "octal";
15}