1 public class pr8676 {
2   // The problem here was that this function couldn't be compiled to
3   // bytecode.
f(long j)4   private void f(long j) {
5     boolean x = (1 << j) != 0;
6   }
7 
main(String[] args)8   public static void main(String[] args)
9   {
10   }
11 }
12