Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

15 lines
259 B
C#

// CS0572: `meth': cannot reference a type through an expression. Consider using `test.meth' instead
// Line: 8
class test2 : test {
int meth( bool b )
{
return 1;
base.meth (true);
}
}
abstract class test {
public delegate void meth( bool b ) ;
}