15 lines
220 B
Kotlin
Vendored
15 lines
220 B
Kotlin
Vendored
val v = 1
|
|
|
|
enum class class InlineOption {
|
|
A, B
|
|
}
|
|
|
|
annotation class inlineOptions(val x: InlineOption)
|
|
|
|
fun foo(@inlineOptions(<caret>) { }
|
|
|
|
// INVOCATION_COUNT: 1
|
|
// EXIST: InlineOption
|
|
// EXIST: String
|
|
// EXIST: v
|