X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Ftest-591.cs;h=22f10ac7d205d6d2aaf99691294bbb6e8d5d3e6d;hb=ea954f481b6c872e594b6003bd5ec3c64fedce1b;hp=51508f7299358bc9287e9a297bbe8eb063b97b78;hpb=5cddeea03868b5710598fe925f5cafa6029f0467;p=mono.git diff --git a/mcs/tests/test-591.cs b/mcs/tests/test-591.cs index 51508f72993..22f10ac7d20 100644 --- a/mcs/tests/test-591.cs +++ b/mcs/tests/test-591.cs @@ -15,10 +15,12 @@ class C1 class C2 { + const object o2 = c2; + const string c2 = null; + public static void Main () { - // BUG compatibility for now - //const object o = null; - //const string s = (string) o; + const object o = null; + const string s = (string) o; } }