Files
kotlin/plugins/allopen/allopen-cli/testData/bytecodeListing/nestedInner.kt
2016-12-09 20:01:07 +03:00

14 lines
189 B
Kotlin
Vendored

annotation class AllOpen
@AllOpen
class Test {
fun testMethod() {}
class Nested {
fun nestedMethod() {}
}
inner class Inner {
fun innerMethod() {}
}
}