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
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0106.cs
blob
6ced8486fbe9402a25600d12ea1f2c067d4e1b85
1
// cs0106: The modifier `public' is not valid for this item
2
// Line: 8
3
interface
A
{
4
void
B
();
5
}
6
7
class
X
:
A
{
8
public virtual void
A
.
B
() {}
9
10
static void
Main
() {}
11
}
12