mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
13 lines
207 B
Kotlin
Vendored
13 lines
207 B
Kotlin
Vendored
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
class TestFirst {
|
|
companion object {
|
|
fun testing(a: InnerClass) = 45
|
|
fun testing(a: NotInnerClass) = 45
|
|
}
|
|
|
|
inner class InnerClass
|
|
inner class NotInnerClass
|
|
}
|