codegen: shift insn
[mate.git] / tests / Shift1.java
diff --git a/tests/Shift1.java b/tests/Shift1.java
new file mode 100644 (file)
index 0000000..8af8804
--- /dev/null
@@ -0,0 +1,8 @@
+package tests;
+
+public class Shift1 {
+       public static void main(String []args) {
+               int s = 0x1000;
+               System.out.printf("shifted: %d\n", s >>> 4);
+       }
+}