summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/replaceWithDotCall/safeCallChain.kt.after
blob: 2a6766dee14aecea4cbe78f89e00d0898ee323b1 (plain)
1
2
3
4
5
6
7
8
9
// "Replace with dot call" "true"
class Foo(val bar: Bar)
class Bar(val baz: Baz)
class Baz(val qux: Int)

fun test(foo: Foo) {
    foo.bar?.baz?.qux
}
/* IGNORE_FIR */