889c210576
These tests demonstrate the implicit type phase problem - annotations are also resolved, although they should not ^KT-56551
7 lines
356 B
Kotlin
Vendored
7 lines
356 B
Kotlin
Vendored
package myPack
|
|
|
|
annotation class Anno(val number: Int)
|
|
|
|
@Anno(<!ANNOTATION_ARGUMENT_MUST_BE_CONST, TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>function(42)<!>)
|
|
fun function(@Anno(<!ANNOTATION_ARGUMENT_MUST_BE_CONST, TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>function(24)<!>) param: Int = <!TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>function(0)<!>) = 1
|