mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
203 B
Kotlin
13 lines
203 B
Kotlin
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
class TestFirst {
|
|
class object {
|
|
fun testing(a: InnerClass) = 45
|
|
fun testing(a: NotInnerClass) = 45
|
|
}
|
|
|
|
inner class InnerClass
|
|
inner class NotInnerClass
|
|
}
|