Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-145.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78cb9a6811de06853a20753871fccb97f55f9822 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

class JagArrayTest
{
  private static int [][] array = { new int [] { 1 }};

  public static void Main() {
      Console.WriteLine(array[0][0]);
  }
}