blob: 14d378fee81cba61270c15fd4b2d7c5a7c5c6e2e (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS7083: Expression must be implicitly convertible to Boolean or its type `C' must define operator `false'
// Line: 8
class C
{
dynamic M (dynamic d)
{
return this && d;
}
}
|