2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs1008-2.cs
1 // CS1008: Type byte, sbyte, short, ushort, int, uint, long, or ulong expected (got: `System.Int16')
2 // Line: 3
3 enum Test : System.Int16
4 {
5         One
6 }
7
8 class X
9 {
10         static void Main ()
11         { }
12 }
13
14