[mcs] Remove unknown warnings reporting to match latest csc
[mono.git] / mcs / errors / cs0509.cs
1 // CS0509: `X': cannot derive from sealed type `V'
2 // Line: 8
3
4 struct V {
5         int v;
6 }
7
8 class X : V {
9 }