efdeb7b449
#KT-39930 Fixed
11 lines
138 B
Plaintext
Vendored
11 lines
138 B
Plaintext
Vendored
// "Add '== true'" "true"
|
|
class Foo {
|
|
fun bar() = true
|
|
}
|
|
|
|
fun baz(b: Boolean) {}
|
|
|
|
fun test(foo: Foo?) {
|
|
baz(foo?.bar() == true)
|
|
}
|