7b7619d1f3
Make all filenames start with lowercase letter (instead of half lower / half upper)
8 lines
102 B
Kotlin
8 lines
102 B
Kotlin
package test
|
|
|
|
enum class E { ENTRY }
|
|
|
|
annotation class Anno(val e: E)
|
|
|
|
Anno(E.ENTRY) open class Class
|