15 lines
231 B
Kotlin
Vendored
15 lines
231 B
Kotlin
Vendored
package test
|
|
|
|
internal class Simple {
|
|
@MyAnnotation
|
|
fun myMethod() {}
|
|
|
|
class NestedClass {
|
|
class NestedNestedClass
|
|
}
|
|
|
|
inner class InnerClass
|
|
companion object
|
|
}
|
|
|
|
internal annotation class MyAnnotation |