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