Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0051-2.cs
1 // CS0051: Inconsistent accessibility: parameter type `C.S?[][]' is less accessible than method `C.Foo(C.S?[][])'
2 // Line: 7
3
4 public class C
5 {
6         struct S {}
7         public void Foo (S?[][] o) {}
8 }