mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
9 lines
197 B
Kotlin
Vendored
9 lines
197 B
Kotlin
Vendored
// !DIAGNOSTICS: -NO_VALUE_FOR_PARAMETER, -CONSTANT_EXPECTED_TYPE_MISMATCH
|
|
// This should not crash
|
|
package foo
|
|
|
|
@JsModule
|
|
external fun foo(x: Int): Int
|
|
|
|
@JsModule(23)
|
|
external fun bar(x: Int): Int |