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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0558.cs
blob
4ee571048725d967005f436ed7ed4cbcd738c853
1
// CS0558: User-defined operator `SampleClass.implicit operator bool(SampleClass)' must be declared static and public
2
// Line: 5
3
4
class
SampleClass
{
5
static implicit operator bool
(
SampleClass
value
) {
6
return true
;
7
}
8
}