[msvc] Update csproj files
[mono.git] / mcs / tests / test-591.cs
index 51508f7299358bc9287e9a297bbe8eb063b97b78..22f10ac7d205d6d2aaf99691294bbb6e8d5d3e6d 100644 (file)
@@ -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;
        }
 }