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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs7083.cs
blob
5f359c3df625cae97dde28479c733bb22eccc114
1
// CS7083: Expression must be implicitly convertible to Boolean or its type `C' must define operator `true'
2
// Line: 8
3
4
class
C
5
{
6
dynamic
M
(
dynamic
d
)
7
{
8
return this
||
d
;
9
}
10
}