summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/replaceWithDotCall/safeCallChain2.kt.after
blob: 69bf0883d2040e79779638ebb6921006df398fe4 (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 */