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

test-711.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c64ae9395f8426038133acb12bf06f8456944e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;

namespace N
{
	enum FieldType
	{
		Foo
	}
}

namespace N
{
	class Test
	{
		public FieldType FieldType = FieldType.Foo;

		public Test ()
		{
		}

		public Test (int i)
		{
		}

		public static void Main ()
		{
		}
	}
}