Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
inlineFunctionsWithMatchingJvmSignatures
/
source.kt
blob: 5d34707e2194dd93d1951edc513f0ed33f383d88 [
file
]
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
)
}