[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0103-6.cs
1 // CS0103: The name `owner' does not exist in the current context
2 // Line: 6
3
4 class C
5 {
6         public readonly object A = owner.Foo;
7
8         public C ()
9         {
10                 int owner = 1;
11         }
12 }