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

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

class X
{
	static void Main ()
	{ }
}