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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0557.cs
blob
d08357cde520c5924a4aeaecc02d7d276c209719
1
// CS0557: Duplicate user-defined conversion in type `SampleClass'
2
// Line: 5
3
4
class
SampleClass
{
5
public static implicit operator bool
(
SampleClass
value
) {
6
return true
;
7
}
8
9
public static implicit operator bool
(
SampleClass
value
) {
10
return true
;
11
}
12
}