mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Otherwise some tools break (e.g. CheckMethodAdapter in ASM, used in generic signature writer) because they expect class names to be Java identifiers. Some tests fixed, some will be fixed in future commits
9 lines
150 B
Kotlin
Vendored
9 lines
150 B
Kotlin
Vendored
fun Int.test1() {}
|
|
|
|
fun test2() {
|
|
1.test1()
|
|
}
|
|
|
|
// 2 INVOKESTATIC _DefaultPackage.+\.test1 \(I\)V
|
|
// 1 INVOKESTATIC _DefaultPackage.+\.test2 \(\)V
|