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-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0535.cs
blob
c8975fca4fa95b61175cd593491869a14c518f02
1
// cs0535.cs: `Class' does not implement interface member `Interface.Method()'
2
// Line: 8
3
4
interface
Interface
{
5
void
Method
();
6
}
7
8
class
Class
:
Interface
{
9
}
10
11