Files
kotlin-fork/idea/testData/quickfix/addEqEqTrue/simple.kt.after
T
2020-07-02 19:31:43 +07:00

10 lines
122 B
Plaintext
Vendored

// "Add '== true'" "true"
class Foo {
fun bar() = true
}
fun test(foo: Foo?) {
if (foo?.bar() == true) {
}
}