mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
67 lines
2.3 KiB
Plaintext
Vendored
67 lines
2.3 KiB
Plaintext
Vendored
package test
|
|
|
|
public final class ConstructorTypeParamClassObjectConflict</*0*/ test> {
|
|
/*primary*/ public constructor ConstructorTypeParamClassObjectConflict</*0*/ test>()
|
|
public final val some: kotlin.Int = 12
|
|
public final fun <get-some>(): kotlin.Int
|
|
|
|
public companion object Companion {
|
|
/*primary*/ private constructor Companion()
|
|
public final val test: kotlin.Int = 12
|
|
public final fun <get-test>(): kotlin.Int
|
|
}
|
|
}
|
|
|
|
public final class ConstructorTypeParamClassObjectTypeConflict</*0*/ test> {
|
|
/*primary*/ public constructor ConstructorTypeParamClassObjectTypeConflict</*0*/ test>()
|
|
public final val some: test?
|
|
public final fun <get-some>(): test?
|
|
|
|
public companion object Companion {
|
|
/*primary*/ private constructor Companion()
|
|
|
|
public interface test {
|
|
}
|
|
}
|
|
}
|
|
|
|
public final class TestClassObjectAndClassConflict {
|
|
/*primary*/ public constructor TestClassObjectAndClassConflict()
|
|
public final val bla: kotlin.String = "More"
|
|
public final fun <get-bla>(): kotlin.String
|
|
public final val some: kotlin.String = "More"
|
|
public final fun <get-some>(): kotlin.String
|
|
|
|
public companion object Companion {
|
|
/*primary*/ private constructor Companion()
|
|
public final val bla: kotlin.Int = 12
|
|
public final fun <get-bla>(): kotlin.Int
|
|
}
|
|
}
|
|
|
|
public final class TestConstructorParamClassObjectConflict {
|
|
/*primary*/ public constructor TestConstructorParamClassObjectConflict(/*0*/ test: kotlin.String)
|
|
public final val some: kotlin.String
|
|
public final fun <get-some>(): kotlin.String
|
|
|
|
public companion object Companion {
|
|
/*primary*/ private constructor Companion()
|
|
public final val test: kotlin.Int = 12
|
|
public final fun <get-test>(): kotlin.Int
|
|
}
|
|
}
|
|
|
|
public final class TestConstructorValClassObjectConflict {
|
|
/*primary*/ public constructor TestConstructorValClassObjectConflict(/*0*/ test: kotlin.String)
|
|
public final val some: kotlin.String
|
|
public final fun <get-some>(): kotlin.String
|
|
public final val test: kotlin.String
|
|
public final fun <get-test>(): kotlin.String
|
|
|
|
public companion object Companion {
|
|
/*primary*/ private constructor Companion()
|
|
public final val test: kotlin.Int = 12
|
|
public final fun <get-test>(): kotlin.Int
|
|
}
|
|
}
|