mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
25 lines
830 B
Plaintext
Vendored
25 lines
830 B
Plaintext
Vendored
package test
|
|
|
|
internal fun none(): kotlin.Unit
|
|
internal fun one(): kotlin.Unit
|
|
internal fun two(): kotlin.Unit
|
|
|
|
internal final class E1 : java.lang.Exception {
|
|
public constructor E1()
|
|
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
|
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
|
public final /*fake_override*/ fun printStackTrace(): kotlin.Unit
|
|
}
|
|
|
|
internal final class E2 : java.lang.Exception {
|
|
public constructor E2()
|
|
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
|
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
|
public final /*fake_override*/ fun printStackTrace(): kotlin.Unit
|
|
}
|
|
|
|
public/*package*/ open class JavaClass {
|
|
public/*package*/ constructor JavaClass()
|
|
public/*package*/ open fun testMethod(): kotlin.Unit
|
|
}
|