f124ba627d
This is a contract violation – we can touch only bodies during this phase ^KT-56551
8 lines
236 B
Kotlin
Vendored
8 lines
236 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
package myPack
|
|
|
|
annotation class Anno(val number: Int)
|
|
|
|
@Anno(<!ANNOTATION_ARGUMENT_MUST_BE_CONST!>function(42)<!>)
|
|
fun function(@Anno(<!ANNOTATION_ARGUMENT_MUST_BE_CONST!>function(24)<!>) param: Int = function(0)) = 1
|