repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make csproj target work again
[mcs.git]
/
errors
/
cs0122-10.cs
blob
de31f50b1fe9721ee88b688db77503c7af3c237f
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
}