Files
kotlin-fork/compiler/testData/psi/annotation/modifiersMigration/oldUsages.kt
T
Denis Zharkov fc447e2d2f Parse some builtin annotations as modifiers
But still resolve them as annotations.
Mostly it's needed as begin of migration path, one day they become modifiers anyway

Some tests are dropped because they supposed that `annotation` should have parameter
2015-09-08 08:53:35 +03:00

10 lines
135 B
Kotlin
Vendored

@inline @tailrec class A {
@inline(1) fun foo() {
}
kotlin.inline fun bar() {
@kotlin.data() class Local
}
}