[xbuild] Fix #40094, part 2/2: AssignProjectConfiguration - Fallback to
[mono.git] / mcs / errors / cs0103-2.cs
index 27310cfe8d9eb5cc2cb39f30459711dbc716546e..3ed7e3586c30685abc14f46e855b62b6a3613808 100644 (file)
@@ -1,11 +1,11 @@
-// cs0103.cs: The name `y' does not exist in the context of `C'
-// Line: 8
+// CS0103: The name `i' does not exist in the current context
+// Line: 9
+// Compiler options: -r:CS0103-2-lib.dll
 
-public class C
+class A : C
 {
-       public static void Main ()
+       void Test ()
        {
-           int x = y;
-           int y = 1;
+               i = 0;
        }
-}
\ No newline at end of file
+}