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
/
cs0082-9.cs
blob
672f58df64862d5d3e09c4ada2ffd0c419a34913
1
// CS0082: A member `Class.op_Implicit(byte)' is already reserved
2
// Line: 9
3
4
public class
Class
{
5
static public implicit operator
Class
(
byte value
) {
6
return new
Class
();
7
}
8
9
public static void
op_Implicit
(
byte value
) {}
10
}