repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0051-2.cs
blob
a6324dda28347abc19542bedc9b5c9153c1ea0fe
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
}