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
tag rc1
[mcs.git]
/
errors
/
cs0102-13.cs
blob
c9f04f6953d9fc2c55291f6ddcbf428dfc4147ba
1
// cs0102-13.cs: The type `SampleClass' already contains a definition for `op_Implicit'
2
// Line: 10
3
4
public class
SampleClass
{
5
6
static public implicit operator
SampleClass
(
byte value
) {
7
return new
SampleClass
();
8
}
9
10
public bool
op_Implicit
;
11
}