codegen: implement `newarray' and `arraylength'
[mate.git] / tests / Array1.java
1 package tests;
2
3 public class Array1 {
4         public static void main(String []args) {
5                 int []arr = new int[0x8];
6                 System.out.printf(arr.length);
7         }
8 }