Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs0572-2.cs
blobf420cd9c8a75ff8f8c2504d0cfbca56be632a27d
1 // CS0572: `meth': cannot reference a type through an expression; try `test.meth' instead
2 // Line: 8
4 class test2 : test {
5 int meth( bool b )
7 return 1;
8 base.meth (true);
12 abstract class test {
13 public delegate void meth( bool b ) ;