Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
)
}