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

test-365.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afd0dbfec9f82d1faef635e98eacc0a506812786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
	public enum LiteralType
	{
		Void,
	}
	
	class C
	{
		public LiteralType LiteralType					
		{
			set
			{
			}
		}
		
		private LiteralType[] widenSbyte = new LiteralType[]
			{
				LiteralType.Void
			};
			
		public static void Main () {}
	}