Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
name
/
jsNameClashWithDefault.fir.kt
blob: f9f586b4244d05d863b6183d03f26dc5d7b2440c [
file
]
// In K2, the name collision detector is weakened, because the backend started to resolve such collisions.
// K1 was not changed since it's in maintenance mode.
package
foo
@JsName
(
"bar"
)
fun foo
(
x
:
Int
)
=
x
fun bar
()
=
42