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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0528.cs
blob
84b1d06cef01c85902d0288b87941ca0a557f9f5
1
// cs0528: `A' is already listed in interface list
2
// Line: 6
3
interface
A
{
4
void
stuff
();
5
}
6
class
C
:
A
,
A
{
7
public void
stuff
() {}
8
static void
Main
() {}
9
}
10