Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git] / mcs / errors / cs0051-2.cs
bloba6324dda28347abc19542bedc9b5c9153c1ea0fe
1 // CS0051: Inconsistent accessibility: parameter type `C.S?[][]' is less accessible than method `C.Foo(C.S?[][])'
2 // Line: 7
4 public class C
6 struct S {}
7 public void Foo (S?[][] o) {}