Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
qualifier
/
jsQualifierOnLocalDeclarations.kt
blob: ba8a174a4e4b838b63e4a3aa9f5a5d9e554b8776 [
file
]
// RUN_PIPELINE_TILL: BACKEND
// Diagnostic should be added when KT-82785 is fixed
external
class
C
{
@JsQualifier
(
"a"
)
fun o
():
String
@JsQualifier
(
"b"
)
class
D
{
fun k
():
String
}
}