mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
20 lines
566 B
Plaintext
Vendored
20 lines
566 B
Plaintext
Vendored
package test
|
|
|
|
public final class TestFirst {
|
|
/*primary*/ public constructor TestFirst()
|
|
|
|
public companion object Companion {
|
|
/*primary*/ private constructor Companion()
|
|
public final fun testing(/*0*/ a: test.TestFirst.InnerClass): kotlin.Int
|
|
public final fun testing(/*0*/ a: test.TestFirst.NotInnerClass): kotlin.Int
|
|
}
|
|
|
|
public final inner class InnerClass {
|
|
/*primary*/ public constructor InnerClass()
|
|
}
|
|
|
|
public final inner class NotInnerClass {
|
|
/*primary*/ public constructor NotInnerClass()
|
|
}
|
|
}
|