a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
259 B
C#
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 ) ;
|
|
}
|