Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
boxWasmJsInterop
/
jsExternalLibrariesImport.kt
blob: 0fc0a294cb7a274af3bf5b3630f8fafcd6e57e92 [
file
]
// TARGET_BACKEND: WASM
// FILE: sqrt.kt
@file
:
JsQualifier
(
"Math"
)
package
math
external fun sqrt
(
x
:
Double
):
Double
// FILE: main.kt
fun box
():
String
{
if
(
math
.
sqrt
(
4.0
)
!=
2.0
)
return
"sqrt(4.0) should be 2.0"
return
"OK"
}