Archive these files from my generics tree
[mono.git] / mcs / errors / cs8201.cs
1 // 
2 // Should report an error, as C is defined twice
3 //
4
5 class X <T> {
6 }
7
8 class X {
9 }
10
11 class Body {
12         static void Main ()
13         {
14         }
15 }