blob: 336f7e9863b5543964e564c9ba7d5419e768d1ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
public class PR19295 implements myInterface {
public long tagBits = 0;
public final boolean isArrayType() {
return (tagBits & IsArrayType) != 0;
}
}
abstract class blah {
public final static int Bit1 = 0x2;
}
interface myInterface {
long IsArrayType = blah.Bit1;
}
|