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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0541.cs
blob
5a5b7b03f5e2cccef68c5f6b434a11e35d32ab8b
1
// cs0541.cs: `Interface.ICloneable.Clone()': explicit interface declaration can only be declared in a class or struct
2
// Line: 7
3
4
using
System
;
5
6
interface
Interface
:
ICloneable
{
7
void
ICloneable
.
Clone
();
8
}
9
10
class
Test
{
11
static void
Main
() {}
12
}
13