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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0122-10.cs
blob
6dd0519cca59f86411bd72b48ec0afe5384437f8
1
// CS0122: `X.Y.Y(string)' is inaccessible due to its protection level
2
// Line: 9
3
// Compiler options: -r:CS0122-10-lib.dll
4
5
using
System
;
6
using
X
;
7
8
class
T
:
Y
{
9
public
T
(
String test
,
String test1
) :
base
(
test
) {
10
}
11
static void
Main
() {}
12
}