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

test-731.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0041d9405bcfc02ee4dee325c92ceeb7e1adee65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;

// Static array initializers test

enum S
{
	Foo = 5
}

class C
{
	public static int Main ()
	{
		S[] s = new S [] { S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo, S.Foo };
		Console.WriteLine (s [5]);
			
		return 0;
	}
}