Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1521-4.cs
1 // CS1521: Invalid base type `C?'
2 // Line: 8
3
4 struct C
5 {
6 }
7
8 class C2: C?
9 {
10 }
11