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
/
cs0531.cs
blob
d77217d3efda0697dd843292fae14b3242e88473
1
// cs0531.cs: `Interface.Foo()': interface members cannot have a definition
2
// Line: 5
3
4
public interface
Interface
{
5
void
Foo
() {
6
}
7
}
8
9
10