efdeb7b449
#KT-39930 Fixed
10 lines
122 B
Plaintext
Vendored
10 lines
122 B
Plaintext
Vendored
// "Add '== true'" "true"
|
|
class Foo {
|
|
fun bar() = true
|
|
}
|
|
|
|
fun test(foo: Foo?) {
|
|
if (foo?.bar() == true) {
|
|
}
|
|
}
|