add implementation for stpcpy
[mono-project/dkf.git] / mcs / tests / test-788.cs
blobf3df83c242bb1c6104f53781956894915eff2866
1 using System;
3 class Program
5 static int Main ()
7 B b = new B ();
8 if (b.Message != "OK")
9 return 1;
10 return 0;
14 class A
16 public virtual string Message
18 get
20 return "OK";
25 class B : A
27 new string Message
29 get
31 throw new Exception ();