OSDN Git Service

For PR java/8676:
[pf3gnuchains/gcc-fork.git] / libjava / testsuite / libjava.lang / pr8676.java
1 public class pr8676 {
2   // The problem here was that this function couldn't be compiled to
3   // bytecode.
4   private void f(long j) {
5     boolean x = (1 << j) != 0;
6   }
7
8   public static void main(String[] args)
9   {
10   }
11 }