Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0103-2.cs
1 // CS0103: The name `i' does not exist in the current context
2 // Line: 9
3 // Compiler options: -r:CS0103-2-lib.dll
4
5 class A : C
6 {
7         void Test ()
8         {
9                 i = 0;
10         }
11 }