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
2009-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0122-11.cs
blob
7c1c78bb45126a176e3bf8b80b18d0ea655840bd
1
// cs0122-11.cs: `Y.Y(string)' is inaccessible due to its protection level
2
// Line: 12
3
4
using
System
;
5
6
public class
Y
{
7
private
Y
(
String test
) {
8
}
9
}
10
11
class
T
:
Y
{
12
public
T
(
String test
,
String test1
) :
base
(
test
) {
13
}
14
static void
Main
() {}
15
}