eol
[mcs.git] / tests / test-731.cs
blob0041d9405bcfc02ee4dee325c92ceeb7e1adee65
1 using System;
3 // Static array initializers test
5 enum S
7 Foo = 5
10 class C
12 public static int Main ()
14 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 };
15 Console.WriteLine (s [5]);
17 return 0;