[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0051-3.cs
1 // CS0051: Inconsistent accessibility: parameter type `NV' is less accessible than method `C1.Foo(NV)'
2 // Line: 14
3
4 internal class NV
5 {
6 }
7
8 public partial class C1
9 {
10 }
11
12 partial class C1
13 {
14         public void Foo (NV arg)
15         {
16         }
17 }