Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
765a8bdd7c832e71172795c934da59c2a2d7ffe9
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
inlineFunctionsWithMatchingJvmSignatures
/
source.kt
blob: 5d34707e2194dd93d1951edc513f0ed33f383d88 [
file
] [
log
] [
blame
]
import
lib
.*
fun run
()
{
val test1
=
42.toString
(
10
)
val test2
=
J
(
42
).
toString
(
10
)
if
(
test1
!=
"42"
)
throw
AssertionError
(
test1
)
if
(
test2
!=
"J42"
)
throw
AssertionError
(
test2
)
}