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

cs1008.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c49e166dd8f0b0731ca3947171b7aca38def88c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs1008.cs : Type byte, sbyte, short, ushort, int, uint, long, or ulong expected
// Line : 7

public class Blah {

	public enum MyEnum {
		Foo = "foo",
		Bar
	}

	public static void Main ()
	{
	}
}