diff options
Diffstat (limited to 'libjava/testsuite/libjava.compile/PR16701.java')
-rw-r--r-- | libjava/testsuite/libjava.compile/PR16701.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/PR16701.java b/libjava/testsuite/libjava.compile/PR16701.java new file mode 100644 index 0000000..60d459a --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR16701.java @@ -0,0 +1,10 @@ +class Cl +{ + private static final int CONSTANT1 = 0x001; + public static final int CONSTANT2 = 0x002 >> CONSTANT1; +} + +public class PR16701 +{ + public static final int VALUE = Cl.CONSTANT2; +} |