Files
linux-packaging-mono/mcs/errors/cs0051-2.cs

9 lines
189 B
C#
Raw Normal View History

// 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) {}
}