14 lines
115 B
Plaintext
14 lines
115 B
Plaintext
package foo
|
|
|
|
import foo.Foo.*
|
|
|
|
enum class Foo {
|
|
AAA
|
|
}
|
|
|
|
fun take(a: Any){}
|
|
|
|
fun test() {
|
|
take(AAA<caret>)
|
|
}
|