Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
addTestForFalsePositiveDuplicateLabelInWhen.kt
blob: d576f8ccf864586a4e5e2ae3f76aa565e9ec35b2 [
file
]
// FIR_IDENTICAL
// RUN_PIPELINE_TILL: BACKEND
// ISSUE: KT-26045
// MODULE: lib
class
A
{
fun foo
()
{}
fun bar
()
{}
}
// MODULE: app(lib)
fun test
(
a
:
A
)
{
a
.
foo
()
a
.
bar
()
}
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration */