add implementation for stpcpy
[mono-project/dkf.git] / mcs / tests / test-781.cs
blobb461dc28da9e147913e5f81a4483d8d7192f8c34
1 using System;
3 delegate void D ();
5 class E
7 public event D temp;
10 class A
12 E Prop {
13 get {
14 return new E ();
18 void Test ()
20 Prop.temp += delegate () { };
23 public static void Main ()
25 var a = new A ();
26 a.Test ();