codeowners update
[mono.git] / mcs / tests / test-145.cs
1 using System;
2
3 class JagArrayTest
4 {
5   private static int [][] array = { new int [] { 1 }};
6
7   public static void Main() {
8       Console.WriteLine(array[0][0]);
9   }
10 }
11