a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
14 lines
237 B
C#
14 lines
237 B
C#
// CS0236: A field initializer cannot reference the nonstatic field, method, or property `Test.o1'
|
|
// Line: 8
|
|
delegate void Foo ();
|
|
|
|
class Test
|
|
{
|
|
object o1;
|
|
|
|
Foo h = delegate () {
|
|
o1 = null;
|
|
};
|
|
}
|
|
|