repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs0541.cs
blob
20dde272a5d1f401427ccce316d8e8f94671d62c
1
// CS0541: `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