c656a83a02
This code with `b()` crashes the JVM backend. ^KT-59822 Fixed ^KT-59874
10 lines
252 B
Kotlin
Vendored
10 lines
252 B
Kotlin
Vendored
package myPack
|
|
|
|
annotation class Anno(val number: Int)
|
|
|
|
fun topLevelFun() {
|
|
class LocalClass {
|
|
fun @receiver:Anno(<!ANNOTATION_ARGUMENT_MUST_BE_CONST, TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>42.function()<!>) Int.function() = 1
|
|
}
|
|
}
|