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-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0555.cs
blob
72c57ba9b5196c406fbed2bc52300b9ba8003138
1
// cs0555.cs: User-defined operator cannot take an object of the enclosing type and convert to an object of the enclosing type
2
// Line : 8
3
4
class
Blah
{
5
6
public static void
Main
() {}
7
8
public static implicit operator
Blah
(
Blah i
) {}
9
10
}