ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
10 lines
165 B
Kotlin
Vendored
10 lines
165 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// DUMP_DEFAULT_PARAMETER_VALUES
|
|
|
|
package test
|
|
|
|
@Anno
|
|
class User(val name: String = "John", age: Int = 18)
|
|
|
|
internal annotation class Anno
|