Skip to main content
summaryrefslogtreecommitdiffstats
blob: 33510feab8927f5066ff19a8cf17c701de3e349f (plain) (blame)
1
2
3
4
5
6
public class Bug49361 {
    public static void main(String [ ] args) {
        int[] table = new int [] {1,2,3};
        int[] empty = new int [] {};
    }
}

Back to the top