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