summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0051-2.cs
blob: a6324dda28347abc19542bedc9b5c9153c1ea0fe (plain)
1
2
3
4
5
6
7
8
// CS0051: Inconsistent accessibility: parameter type `C.S?[][]' is less accessible than method `C.Foo(C.S?[][])'
// Line: 7

public class C
{
	struct S {}
	public void Foo (S?[][] o) {}
}