[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0122-32.cs
blob4988ff1578f5e37eff008ab0db5f65eb5c1b8412
1 // CS0122: `A.Foo()' is inaccessible due to its protection level
2 // Line: 23
4 class A
6 public void Foo (int i)
10 private void Foo ()
15 class B : A
17 public static void Main ()
21 void Test ()
23 Foo ();