merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / errors / cs0501.cs
1 // cs0501.cs: `Class.X()' must declare a body because it is not marked abstract or extern
2 // Line: 4
3 class Class {
4         virtual public void X ();
5 }