Check compileJavaAgainstKotlin tests with .txt files
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package test
|
||||
|
||||
public/*package*/ open class ClassObject {
|
||||
public/*package*/ constructor ClassObject()
|
||||
public/*package*/ open fun accessToClassObject(): kotlin.Unit
|
||||
public/*package*/ open fun accessToInnerClass(): kotlin.Unit
|
||||
public/*package*/ open fun accessToPackageObject(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal object PackageInner {
|
||||
private constructor PackageInner()
|
||||
internal final val value: kotlin.Int
|
||||
internal final fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class WithClassObject {
|
||||
public constructor WithClassObject()
|
||||
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val value: kotlin.Int
|
||||
internal final val valueWithGetter: kotlin.Int
|
||||
internal final var variable: kotlin.Int
|
||||
internal final var variableWithAccessors: kotlin.Int
|
||||
internal final fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class MyInner {
|
||||
public constructor MyInner()
|
||||
internal final val value: kotlin.Int
|
||||
internal final fun foo(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public constructor A(/*0*/ kotlin.Int = ...)
|
||||
internal final val a: kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Simple {
|
||||
public/*package*/ constructor Simple()
|
||||
public/*package*/ open fun foo(): kotlin.Unit
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public constructor A(/*0*/ kotlin.Int = ..., /*1*/ kotlin.String = ...)
|
||||
internal final val a: kotlin.Int
|
||||
internal final val b: kotlin.String
|
||||
}
|
||||
|
||||
public/*package*/ open class Simple {
|
||||
public/*package*/ constructor Simple()
|
||||
public/*package*/ open fun foo(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
package test
|
||||
|
||||
public/*package*/ open class ExtendsAbstractListT {
|
||||
public/*package*/ constructor ExtendsAbstractListT()
|
||||
}
|
||||
|
||||
internal abstract class Mine</*0*/ T> : java.util.AbstractList<T> {
|
||||
public constructor Mine</*0*/ T>()
|
||||
protected/*protected and package*/ final /*fake_override*/ var modCount: kotlin.Int
|
||||
public open /*fake_override*/ fun add(/*0*/ T!): kotlin.Boolean
|
||||
public open /*fake_override*/ fun add(/*0*/ kotlin.Int, /*1*/ T!): kotlin.Unit
|
||||
public open /*fake_override*/ fun addAll(/*0*/ kotlin.Collection<T!>): kotlin.Boolean
|
||||
public open /*fake_override*/ fun addAll(/*0*/ kotlin.Int, /*1*/ (kotlin.MutableCollection<out T!>..kotlin.Collection<T!>?)): kotlin.Boolean
|
||||
public open /*fake_override*/ fun clear(): kotlin.Unit
|
||||
public open /*fake_override*/ fun contains(/*0*/ kotlin.Any?): kotlin.Boolean
|
||||
public open /*fake_override*/ fun containsAll(/*0*/ kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun get(/*0*/ kotlin.Int): T!
|
||||
public open /*fake_override*/ fun indexOf(/*0*/ kotlin.Any!): kotlin.Int
|
||||
public open /*fake_override*/ fun isEmpty(): kotlin.Boolean
|
||||
public open /*fake_override*/ fun iterator(): kotlin.(Mutable)Iterator<T!>!
|
||||
public open /*fake_override*/ fun lastIndexOf(/*0*/ kotlin.Any!): kotlin.Int
|
||||
public open /*fake_override*/ fun listIterator(): kotlin.(Mutable)ListIterator<T!>!
|
||||
public open /*fake_override*/ fun listIterator(/*0*/ kotlin.Int): kotlin.(Mutable)ListIterator<T!>!
|
||||
invisible_fake open /*fake_override*/ fun outOfBoundsMsg(/*0*/ kotlin.Int): kotlin.String!
|
||||
invisible_fake open /*fake_override*/ fun rangeCheckForAdd(/*0*/ kotlin.Int): kotlin.Unit
|
||||
public open /*fake_override*/ fun remove(/*0*/ kotlin.Any?): kotlin.Boolean
|
||||
public open /*fake_override*/ fun remove(/*0*/ kotlin.Int): T!
|
||||
public open /*fake_override*/ fun removeAll(/*0*/ kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
||||
protected/*protected and package*/ open /*fake_override*/ fun removeRange(/*0*/ kotlin.Int, /*1*/ kotlin.Int): kotlin.Unit
|
||||
public open /*fake_override*/ fun retainAll(/*0*/ kotlin.Collection<kotlin.Any?>): kotlin.Boolean
|
||||
public open /*fake_override*/ fun set(/*0*/ kotlin.Int, /*1*/ T!): T!
|
||||
public abstract /*fake_override*/ fun size(): kotlin.Int
|
||||
public open /*fake_override*/ fun subList(/*0*/ kotlin.Int, /*1*/ kotlin.Int): kotlin.(Mutable)List<T!>!
|
||||
public open /*fake_override*/ fun toArray(): kotlin.Array<(out) kotlin.Any!>!
|
||||
public open /*fake_override*/ fun </*0*/ T> toArray(/*0*/ kotlin.Array<(out) T!>!): kotlin.Array<(out) T!>!
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
package test
|
||||
|
||||
internal abstract class Mine : java.util.List<kotlin.String> {
|
||||
public constructor Mine()
|
||||
public abstract /*fake_override*/ fun add(/*0*/ kotlin.Int, /*1*/ kotlin.String!): kotlin.Unit
|
||||
public abstract /*fake_override*/ fun add(/*0*/ kotlin.String!): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun addAll(/*0*/ (kotlin.MutableCollection<out kotlin.String!>..kotlin.Collection<kotlin.String!>?)): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun addAll(/*0*/ kotlin.Int, /*1*/ (kotlin.MutableCollection<out kotlin.String!>..kotlin.Collection<kotlin.String!>?)): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun clear(): kotlin.Unit
|
||||
public abstract /*fake_override*/ fun contains(/*0*/ kotlin.Any!): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun containsAll(/*0*/ kotlin.(Mutable)Collection<*>!): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun get(/*0*/ kotlin.Int): kotlin.String!
|
||||
public abstract /*fake_override*/ fun indexOf(/*0*/ kotlin.Any!): kotlin.Int
|
||||
public abstract /*fake_override*/ fun isEmpty(): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun iterator(): kotlin.(Mutable)Iterator<kotlin.String!>!
|
||||
public abstract /*fake_override*/ fun lastIndexOf(/*0*/ kotlin.Any!): kotlin.Int
|
||||
public abstract /*fake_override*/ fun listIterator(): kotlin.(Mutable)ListIterator<kotlin.String!>!
|
||||
public abstract /*fake_override*/ fun listIterator(/*0*/ kotlin.Int): kotlin.(Mutable)ListIterator<kotlin.String!>!
|
||||
public abstract /*fake_override*/ fun remove(/*0*/ kotlin.Any!): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun remove(/*0*/ kotlin.Int): kotlin.String!
|
||||
public abstract /*fake_override*/ fun removeAll(/*0*/ kotlin.(Mutable)Collection<*>!): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun retainAll(/*0*/ kotlin.(Mutable)Collection<*>!): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun set(/*0*/ kotlin.Int, /*1*/ kotlin.String!): kotlin.String!
|
||||
public abstract /*fake_override*/ fun size(): kotlin.Int
|
||||
public abstract /*fake_override*/ fun subList(/*0*/ kotlin.Int, /*1*/ kotlin.Int): kotlin.(Mutable)List<kotlin.String!>!
|
||||
public abstract /*fake_override*/ fun toArray(): kotlin.Array<(out) kotlin.Any!>!
|
||||
public abstract /*fake_override*/ fun </*0*/ T> toArray(/*0*/ kotlin.Array<(out) T!>!): kotlin.Array<(out) T!>!
|
||||
}
|
||||
|
||||
public/*package*/ open class PlainExtendsListString {
|
||||
public/*package*/ constructor PlainExtendsListString()
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package test
|
||||
|
||||
public/*package*/ open class ImplementsMapPP {
|
||||
public/*package*/ constructor ImplementsMapPP()
|
||||
}
|
||||
|
||||
internal abstract class Mine</*0*/ P1, /*1*/ P2> : java.util.Map<P2, P1> {
|
||||
public constructor Mine</*0*/ P1, /*1*/ P2>()
|
||||
public abstract /*fake_override*/ fun clear(): kotlin.Unit
|
||||
public abstract /*fake_override*/ fun containsKey(/*0*/ kotlin.Any!): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun containsValue(/*0*/ kotlin.Any!): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun entrySet(): kotlin.(Mutable)Set<kotlin.(Mutable)Map.(Mutable)Entry<P2!, P1!>!>!
|
||||
public abstract /*fake_override*/ fun get(/*0*/ kotlin.Any!): P1!
|
||||
public abstract /*fake_override*/ fun isEmpty(): kotlin.Boolean
|
||||
public abstract /*fake_override*/ fun keySet(): kotlin.(Mutable)Set<P2!>!
|
||||
public abstract /*fake_override*/ fun put(/*0*/ P2!, /*1*/ P1!): P1!
|
||||
public abstract /*fake_override*/ fun putAll(/*0*/ (kotlin.MutableMap<out P2!, out P1!>..kotlin.Map<out P2!, P1!>?)): kotlin.Unit
|
||||
public abstract /*fake_override*/ fun remove(/*0*/ kotlin.Any!): P1!
|
||||
public abstract /*fake_override*/ fun size(): kotlin.Int
|
||||
public abstract /*fake_override*/ fun values(): kotlin.(Mutable)Collection<P1!>!
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package test
|
||||
|
||||
public/*package*/ open class InnerClass {
|
||||
public/*package*/ constructor InnerClass()
|
||||
public/*package*/ final var field1: test.Outer.Inner1!
|
||||
public/*package*/ final var field2: test.Outer.Inner2!
|
||||
}
|
||||
|
||||
internal final class Outer {
|
||||
public constructor Outer()
|
||||
|
||||
internal final inner class Inner1 {
|
||||
public constructor Inner1()
|
||||
}
|
||||
|
||||
internal final inner class Inner2 {
|
||||
public constructor Inner2(/*0*/ kotlin.String)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package test
|
||||
|
||||
public/*package*/ open class InnerClassConstructors {
|
||||
public/*package*/ constructor InnerClassConstructors()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Outer {
|
||||
public constructor Outer()
|
||||
|
||||
internal final inner class InnerGeneric {
|
||||
public constructor InnerGeneric(/*0*/ kotlin.List<kotlin.String>)
|
||||
}
|
||||
|
||||
internal final inner class InnerPrimitive {
|
||||
public constructor InnerPrimitive(/*0*/ kotlin.Int)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package test
|
||||
|
||||
public/*package*/ open class InnerClassOfGeneric {
|
||||
public/*package*/ constructor InnerClassOfGeneric()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Outer</*0*/ T> {
|
||||
public constructor Outer</*0*/ T>()
|
||||
|
||||
internal final inner class Inner {
|
||||
public constructor Inner(/*0*/ kotlin.List<T>)
|
||||
}
|
||||
|
||||
internal final inner class InnerSimple {
|
||||
public constructor InnerSimple()
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
internal final class Impossible</*0*/ P> {
|
||||
public constructor Impossible</*0*/ P>()
|
||||
}
|
||||
|
||||
public/*package*/ open class Simple {
|
||||
public/*package*/ constructor Simple()
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package test
|
||||
|
||||
internal fun bar(/*0*/ test.K<*>): kotlin.Unit
|
||||
|
||||
internal open class K</*0*/ out T : test.K<T>> {
|
||||
public constructor K</*0*/ out T : test.K<T>>()
|
||||
internal final fun foo(): test.K<*>
|
||||
internal final fun foo(/*0*/ test.K<*>): kotlin.Unit
|
||||
}
|
||||
|
||||
public open class StarProjection {
|
||||
public constructor StarProjection()
|
||||
public/*package*/ open fun foo(/*0*/ test.K<*>!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Sub : test.K<test.K<*>> {
|
||||
public constructor Sub()
|
||||
internal final /*fake_override*/ fun foo(): test.K<*>
|
||||
internal final /*fake_override*/ fun foo(/*0*/ test.K<*>): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package test
|
||||
|
||||
internal final enum class MyEnum : kotlin.Enum<test.MyEnum> {
|
||||
public enum entry OK : test.MyEnum {
|
||||
private constructor OK()
|
||||
public final /*fake_override*/ fun compareTo(/*0*/ test.MyEnum): kotlin.Int
|
||||
public final /*fake_override*/ fun name(): kotlin.String
|
||||
public final /*fake_override*/ fun ordinal(): kotlin.Int
|
||||
}
|
||||
|
||||
private constructor MyEnum()
|
||||
public final /*fake_override*/ fun compareTo(/*0*/ test.MyEnum): kotlin.Int
|
||||
public final /*fake_override*/ fun name(): kotlin.String
|
||||
public final /*fake_override*/ fun ordinal(): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ kotlin.String): test.MyEnum
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.MyEnum>
|
||||
}
|
||||
|
||||
public open class kt3561 {
|
||||
public constructor kt3561()
|
||||
public open fun getEntryName(): test.MyEnum!
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
package test
|
||||
|
||||
internal final enum class MyEnum : kotlin.Enum<test.MyEnum> {
|
||||
public enum entry ENTRY : test.MyEnum {
|
||||
private constructor ENTRY()
|
||||
kotlin.deprecated(value = "": kotlin.String) internal final /*fake_override*/ val ord: kotlin.Int
|
||||
public final /*fake_override*/ fun compareTo(/*0*/ test.MyEnum): kotlin.Int
|
||||
internal final /*fake_override*/ fun f(/*0*/ java.lang.Deprecated() kotlin.Int): kotlin.Unit
|
||||
public final /*fake_override*/ fun name(): kotlin.String
|
||||
public final /*fake_override*/ fun ordinal(): kotlin.Int
|
||||
}
|
||||
|
||||
private constructor MyEnum(/*0*/ kotlin.deprecated(value = "": kotlin.String) kotlin.Int)
|
||||
kotlin.deprecated(value = "": kotlin.String) internal final val ord: kotlin.Int
|
||||
public final /*fake_override*/ fun compareTo(/*0*/ test.MyEnum): kotlin.Int
|
||||
internal final fun f(/*0*/ java.lang.Deprecated() kotlin.Int): kotlin.Unit
|
||||
public final /*fake_override*/ fun name(): kotlin.String
|
||||
public final /*fake_override*/ fun ordinal(): kotlin.Int
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ kotlin.String): test.MyEnum
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<test.MyEnum>
|
||||
}
|
||||
|
||||
public open class kt4050 {
|
||||
public constructor kt4050()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
package test
|
||||
|
||||
public open class AccessorGenericSignature {
|
||||
public constructor AccessorGenericSignature()
|
||||
private final val b: test.BadClass!
|
||||
}
|
||||
|
||||
public final class BadClass {
|
||||
public constructor BadClass()
|
||||
private final fun </*0*/ D> bar(/*0*/ kotlin.List<D>): kotlin.Unit
|
||||
private final fun </*0*/ E : kotlin.Number, /*1*/ F : kotlin.MutableList<E>> baz(/*0*/ kotlin.List<F>): kotlin.Unit
|
||||
internal final fun foo(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun anyany(/*0*/ kotlin.Any, /*1*/ java.util.List<kotlin.String>): kotlin.Any
|
||||
|
||||
public/*package*/ open class Any {
|
||||
public/*package*/ constructor Any()
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun ohMy(/*0*/ kotlin.Array<kotlin.IntArray>): kotlin.Array<kotlin.IntArray>
|
||||
|
||||
public/*package*/ open class ArrayOfIntArray {
|
||||
public/*package*/ constructor ArrayOfIntArray()
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun ohMy(/*0*/ kotlin.Array<kotlin.Array<kotlin.Int>>, /*1*/ java.util.List<kotlin.String>): kotlin.Array<kotlin.Array<kotlin.Int>>
|
||||
|
||||
public/*package*/ open class ArrayOfIntArray {
|
||||
public/*package*/ constructor ArrayOfIntArray()
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package test
|
||||
|
||||
public open class ClashingSignaturesWithoutReturnType {
|
||||
public constructor ClashingSignaturesWithoutReturnType()
|
||||
public/*package*/ open fun test(/*0*/ kotlin.(Mutable)List<kotlin.String!>!, /*1*/ kotlin.(Mutable)List<kotlin.Int!>!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class K {
|
||||
public constructor K()
|
||||
internal final fun foo(/*0*/ kotlin.List<kotlin.Int>): kotlin.Int
|
||||
internal final fun foo(/*0*/ kotlin.List<kotlin.String>): kotlin.String
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
package test
|
||||
|
||||
internal final class Impl : test.Trait {
|
||||
public constructor Impl()
|
||||
internal open val bar: kotlin.Int
|
||||
internal open fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class JavaClass {
|
||||
public/*package*/ constructor JavaClass()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Test : test.Trait {
|
||||
public constructor Test()
|
||||
internal open /*delegation*/ val bar: kotlin.Int
|
||||
internal open /*delegation*/ fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal interface Trait {
|
||||
internal abstract val bar: kotlin.Int
|
||||
internal abstract fun foo(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
internal fun kotlin.String.noParam(): kotlin.Unit
|
||||
internal fun kotlin.String.param(/*0*/ kotlin.String): kotlin.Unit
|
||||
|
||||
public/*package*/ open class GenericArray {
|
||||
public/*package*/ constructor GenericArray()
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ P> ffgg(/*0*/ kotlin.Array<P>): kotlin.Array<P>
|
||||
|
||||
public/*package*/ open class GenericArray {
|
||||
public/*package*/ constructor GenericArray()
|
||||
|
||||
// Static members
|
||||
public open fun ggff(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
internal fun f(): kotlin.String
|
||||
|
||||
public/*package*/ open class Hello {
|
||||
public/*package*/ constructor Hello()
|
||||
|
||||
// Static members
|
||||
public open fun xx(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun lll(/*0*/ kotlin.Int): kotlin.Int
|
||||
|
||||
public/*package*/ open class Int {
|
||||
public/*package*/ constructor Int()
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun doNothing(/*0*/ kotlin.IntArray, /*1*/ java.util.List<kotlin.String>): kotlin.IntArray
|
||||
|
||||
public/*package*/ open class IntArray {
|
||||
public/*package*/ constructor IntArray()
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun www(/*0*/ kotlin.Int = ...): kotlin.Int
|
||||
|
||||
public/*package*/ open class IntWithDefault {
|
||||
public/*package*/ constructor IntWithDefault()
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun doNothing(/*0*/ kotlin.Array<kotlin.Int>, /*1*/ java.util.List<kotlin.String>): kotlin.Array<kotlin.Int>
|
||||
|
||||
public/*package*/ open class IntArray {
|
||||
public/*package*/ constructor IntArray()
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
internal fun ggg(/*0*/ kotlin.List<kotlin.Int>): kotlin.List<kotlin.Int>
|
||||
|
||||
public/*package*/ open class ListOfInt {
|
||||
public/*package*/ constructor ListOfInt()
|
||||
|
||||
// Static members
|
||||
public open fun hhh(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
internal fun ff(/*0*/ kotlin.List<kotlin.String>): kotlin.Int
|
||||
|
||||
public/*package*/ open class ListString {
|
||||
public/*package*/ constructor ListString()
|
||||
|
||||
// Static members
|
||||
public open fun gg(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ P> listOfT(/*0*/ kotlin.List<P>): kotlin.List<P>
|
||||
|
||||
public/*package*/ open class ListOfT {
|
||||
public/*package*/ constructor ListOfT()
|
||||
|
||||
// Static members
|
||||
public open fun check(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ K> fff(/*0*/ kotlin.Map<K, kotlin.String>): kotlin.Map<K, kotlin.String>
|
||||
|
||||
public/*package*/ open class MapOfKString {
|
||||
public/*package*/ constructor MapOfKString()
|
||||
|
||||
// Static members
|
||||
public open fun gfgdgfg(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
internal fun fff(/*0*/ kotlin.Map<kotlin.String, kotlin.Int?>): kotlin.Map<kotlin.String, kotlin.Int?>
|
||||
|
||||
public/*package*/ open class MapOfKString {
|
||||
public/*package*/ constructor MapOfKString()
|
||||
|
||||
// Static members
|
||||
public open fun gfgdgfg(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ P1 : kotlin.List<kotlin.String>> id(/*0*/ P1): P1
|
||||
|
||||
public/*package*/ open class Question {
|
||||
public/*package*/ constructor Question()
|
||||
|
||||
// Static members
|
||||
public/*package*/ open fun </*0*/ T> id2(/*0*/ T!): T!
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ T : kotlin.String> id(/*0*/ T): T
|
||||
|
||||
public/*package*/ open class Question {
|
||||
public/*package*/ constructor Question()
|
||||
|
||||
// Static members
|
||||
public/*package*/ open fun </*0*/ T> id2(/*0*/ T!): T!
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package test
|
||||
|
||||
internal interface Trait {
|
||||
internal open fun generic(/*0*/ kotlin.List<kotlin.String>): kotlin.Unit
|
||||
internal open fun simple(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ abstract class TraitImpl : test.Trait {
|
||||
public/*package*/ constructor TraitImpl()
|
||||
internal open /*fake_override*/ fun generic(/*0*/ kotlin.List<kotlin.String>): kotlin.Unit
|
||||
internal open /*fake_override*/ fun simple(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun gg(/*0*/ kotlin.List<kotlin.String>, /*1*/ vararg kotlin.Int /*kotlin.IntArray*/): kotlin.List<kotlin.String>
|
||||
|
||||
public/*package*/ open class Vararg {
|
||||
public/*package*/ constructor Vararg()
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun f(): kotlin.Unit
|
||||
|
||||
public/*package*/ open class Void {
|
||||
public/*package*/ constructor Void()
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
kotlin.platform.platformName(name = "bar": kotlin.String) internal fun foo(): kotlin.Unit
|
||||
|
||||
public open class PlatformName {
|
||||
public constructor PlatformName()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
Vendored
+27
@@ -0,0 +1,27 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Byte> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Byte
|
||||
}
|
||||
|
||||
internal abstract class C : test.A<kotlin.Byte> {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Byte
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Byte
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsC : test.C {
|
||||
public/*package*/ constructor ExtendsC()
|
||||
public open fun foo(): kotlin.Byte!
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal final class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal final fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Test {
|
||||
public/*package*/ constructor Test()
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal final class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Test {
|
||||
public/*package*/ constructor Test()
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
package test
|
||||
|
||||
internal interface A {
|
||||
internal abstract fun foo(): kotlin.Any
|
||||
}
|
||||
|
||||
internal open class B : test.A {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Test : test.B {
|
||||
public/*package*/ constructor Test()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal final fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Test : test.B {
|
||||
public/*package*/ constructor Test()
|
||||
internal final /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
Vendored
+27
@@ -0,0 +1,27 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T : kotlin.Comparable<T>> {
|
||||
internal abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
internal abstract class C : test.A<kotlin.Int> {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsC : test.C {
|
||||
public/*package*/ constructor ExtendsC()
|
||||
public open fun foo(): kotlin.Int!
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T : kotlin.Number> {
|
||||
internal abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
internal abstract class C : test.A<kotlin.Int> {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsC : test.C {
|
||||
public/*package*/ constructor ExtendsC()
|
||||
public open fun foo(): kotlin.Int!
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
internal abstract class C : test.A<kotlin.Int> {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsC : test.C {
|
||||
public/*package*/ constructor ExtendsC()
|
||||
public open fun foo(): kotlin.Int!
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
Vendored
+25
@@ -0,0 +1,25 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal interface B : test.A<kotlin.Int> {
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
internal abstract class C : test.B {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
internal open class D : test.C {
|
||||
public constructor D()
|
||||
internal open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsD : test.D {
|
||||
public/*package*/ constructor ExtendsD()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
Vendored
+27
@@ -0,0 +1,27 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int?> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int?
|
||||
}
|
||||
|
||||
internal abstract class C : test.A<kotlin.Int?> {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int?
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int?
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsC : test.C {
|
||||
public/*package*/ constructor ExtendsC()
|
||||
public open fun foo(): kotlin.Int!
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal abstract class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal abstract fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
public open fun foo(): kotlin.Int!
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package test
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
internal final class Test {
|
||||
public constructor Test()
|
||||
internal final fun none(): kotlin.Unit
|
||||
internal final fun one(): kotlin.Unit
|
||||
internal final fun two(): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
package test
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
internal final class None {
|
||||
public constructor None()
|
||||
}
|
||||
|
||||
internal final class One {
|
||||
public constructor One()
|
||||
}
|
||||
|
||||
internal final class OneWithParam {
|
||||
public constructor OneWithParam(/*0*/ kotlin.Int)
|
||||
}
|
||||
|
||||
internal final class Two {
|
||||
public constructor Two()
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package test
|
||||
|
||||
kotlin.jvm.jvmOverloads() internal fun one(/*0*/ kotlin.Int = ...): 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
|
||||
}
|
||||
|
||||
public/*package*/ open class JavaClass {
|
||||
public/*package*/ constructor JavaClass()
|
||||
public/*package*/ open fun testMethod(/*0*/ test.One!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class One {
|
||||
public constructor One(/*0*/ kotlin.Int = ...)
|
||||
internal final fun one(/*0*/ kotlin.Int = ...): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
package test
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
internal final class Impl : test.Trait {
|
||||
public constructor Impl()
|
||||
internal open fun none(): kotlin.Unit
|
||||
internal open fun one(): kotlin.Unit
|
||||
internal open fun two(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class JavaClass {
|
||||
public/*package*/ constructor JavaClass()
|
||||
public/*package*/ open fun testMethod(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Test : test.Trait {
|
||||
public constructor Test()
|
||||
internal open /*delegation*/ fun none(): kotlin.Unit
|
||||
internal open /*delegation*/ fun one(): kotlin.Unit
|
||||
internal open /*delegation*/ fun two(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal interface Trait {
|
||||
internal abstract fun none(): kotlin.Unit
|
||||
internal abstract fun one(): kotlin.Unit
|
||||
internal abstract fun two(): kotlin.Unit
|
||||
}
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
package test
|
||||
|
||||
internal interface Base</*0*/ T> {
|
||||
internal open fun one(/*0*/ T): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Derived : test.Base<kotlin.String> {
|
||||
public constructor Derived()
|
||||
internal open /*fake_override*/ fun one(/*0*/ kotlin.String): 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
|
||||
}
|
||||
|
||||
public/*package*/ open class JavaClass {
|
||||
public/*package*/ constructor JavaClass()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
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
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package test
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
internal final class Test : test.Trait {
|
||||
public constructor Test()
|
||||
internal open /*fake_override*/ fun none(): kotlin.Unit
|
||||
internal open /*fake_override*/ fun one(): kotlin.Unit
|
||||
internal open /*fake_override*/ fun two(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal interface Trait {
|
||||
internal open fun none(): kotlin.Unit
|
||||
internal open fun one(): kotlin.Unit
|
||||
internal open fun two(): kotlin.Unit
|
||||
}
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
package test
|
||||
|
||||
internal fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
|
||||
internal final class A {
|
||||
public constructor A()
|
||||
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val b: kotlin.String
|
||||
kotlin.platform.platformStatic() internal final fun test1(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() internal final fun test2(): kotlin.Unit
|
||||
internal final fun test3(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() internal final fun kotlin.String.test4(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
public/*package*/ open class Test {
|
||||
public/*package*/ constructor Test()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
package test
|
||||
|
||||
internal fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
|
||||
internal final class A {
|
||||
public constructor A()
|
||||
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
kotlin.platform.platformStatic() internal final val b: kotlin.String
|
||||
internal final var test.A.c: kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
public/*package*/ open class Test {
|
||||
public/*package*/ constructor Test()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package test
|
||||
|
||||
internal fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
|
||||
internal object A {
|
||||
private constructor A()
|
||||
internal final val b: kotlin.String
|
||||
kotlin.platform.platformStatic() internal final fun test1(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() internal final fun test2(): kotlin.Unit
|
||||
internal final fun test3(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() internal final fun kotlin.String.test4(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class Test {
|
||||
public/*package*/ constructor Test()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
package test
|
||||
|
||||
internal fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
|
||||
internal object A {
|
||||
private constructor A()
|
||||
kotlin.platform.platformStatic() internal final val b: kotlin.String
|
||||
internal final var test.A.c: kotlin.String
|
||||
}
|
||||
|
||||
public/*package*/ open class Test {
|
||||
public/*package*/ constructor Test()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
internal val kotlin.String.val_: kotlin.String
|
||||
internal var kotlin.String.var_: kotlin.String
|
||||
|
||||
public/*package*/ open class GenericArray {
|
||||
public/*package*/ constructor GenericArray()
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
internal val </*0*/ K, /*1*/ V> test: kotlin.Map<K, V>
|
||||
|
||||
public/*package*/ open class GenericProperty {
|
||||
public/*package*/ constructor GenericProperty()
|
||||
public/*package*/ open fun foo(): kotlin.Unit
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
internal var v: kotlin.Int
|
||||
|
||||
public open class PlatformName {
|
||||
public constructor PlatformName()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
package test
|
||||
|
||||
internal final annotation class AByte : kotlin.Annotation {
|
||||
public constructor AByte(/*0*/ kotlin.Byte)
|
||||
internal final val value: kotlin.Byte
|
||||
}
|
||||
|
||||
internal final annotation class AChar : kotlin.Annotation {
|
||||
public constructor AChar(/*0*/ kotlin.Char)
|
||||
internal final val value: kotlin.Char
|
||||
}
|
||||
|
||||
internal final annotation class ADouble : kotlin.Annotation {
|
||||
public constructor ADouble(/*0*/ kotlin.Double)
|
||||
internal final val value: kotlin.Double
|
||||
}
|
||||
|
||||
internal final annotation class AFloat : kotlin.Annotation {
|
||||
public constructor AFloat(/*0*/ kotlin.Float)
|
||||
internal final val value: kotlin.Float
|
||||
}
|
||||
|
||||
internal final annotation class AInt : kotlin.Annotation {
|
||||
public constructor AInt(/*0*/ kotlin.Int)
|
||||
internal final val value: kotlin.Int
|
||||
}
|
||||
|
||||
internal final annotation class ALong : kotlin.Annotation {
|
||||
public constructor ALong(/*0*/ kotlin.Long)
|
||||
internal final val value: kotlin.Long
|
||||
}
|
||||
|
||||
internal final annotation class AString : kotlin.Annotation {
|
||||
public constructor AString(/*0*/ kotlin.String)
|
||||
internal final val value: kotlin.String
|
||||
}
|
||||
|
||||
test.AString(value = "Test": kotlin.String) test.AChar(value = \u0063 ('c'): kotlin.Char) test.AInt(value = 10: kotlin.Int) test.AByte(value = 11: kotlin.Int) test.ALong(value = 12.toLong(): kotlin.Long) test.ADouble(value = 1.2.toDouble(): kotlin.Double) test.AFloat(value = 1.3.toFloat(): kotlin.Float) public open class AnnotationClass {
|
||||
public constructor AnnotationClass()
|
||||
}
|
||||
|
||||
internal final class Test {
|
||||
public constructor Test()
|
||||
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val vbyte: kotlin.Byte
|
||||
internal final val vchar: kotlin.Char
|
||||
internal final val vdouble: kotlin.Double
|
||||
internal final val vfloat: kotlin.Float
|
||||
internal final val vint: kotlin.Int
|
||||
internal final val vlong: kotlin.Long
|
||||
internal final val vstring: kotlin.String
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
package test
|
||||
|
||||
internal final annotation class AByte : kotlin.Annotation {
|
||||
public constructor AByte(/*0*/ kotlin.Byte)
|
||||
internal final val value: kotlin.Byte
|
||||
}
|
||||
|
||||
internal final annotation class AChar : kotlin.Annotation {
|
||||
public constructor AChar(/*0*/ kotlin.Char)
|
||||
internal final val value: kotlin.Char
|
||||
}
|
||||
|
||||
internal final annotation class ADouble : kotlin.Annotation {
|
||||
public constructor ADouble(/*0*/ kotlin.Double)
|
||||
internal final val value: kotlin.Double
|
||||
}
|
||||
|
||||
internal final annotation class AFloat : kotlin.Annotation {
|
||||
public constructor AFloat(/*0*/ kotlin.Float)
|
||||
internal final val value: kotlin.Float
|
||||
}
|
||||
|
||||
internal final annotation class AInt : kotlin.Annotation {
|
||||
public constructor AInt(/*0*/ kotlin.Int)
|
||||
internal final val value: kotlin.Int
|
||||
}
|
||||
|
||||
internal final annotation class ALong : kotlin.Annotation {
|
||||
public constructor ALong(/*0*/ kotlin.Long)
|
||||
internal final val value: kotlin.Long
|
||||
}
|
||||
|
||||
internal final annotation class AString : kotlin.Annotation {
|
||||
public constructor AString(/*0*/ kotlin.String)
|
||||
internal final val value: kotlin.String
|
||||
}
|
||||
|
||||
test.AString(value = "Test": kotlin.String) test.AChar(value = \u0063 ('c'): kotlin.Char) test.AInt(value = 10: kotlin.Int) test.AByte(value = 11: kotlin.Int) test.ALong(value = 12.toLong(): kotlin.Long) test.ADouble(value = 1.2.toDouble(): kotlin.Double) test.AFloat(value = 1.3.toFloat(): kotlin.Float) public open class AnnotationTrait {
|
||||
public constructor AnnotationTrait()
|
||||
}
|
||||
|
||||
internal interface Test {
|
||||
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val vbyte: kotlin.Byte
|
||||
internal final val vchar: kotlin.Char
|
||||
internal final val vdouble: kotlin.Double
|
||||
internal final val vfloat: kotlin.Float
|
||||
internal final val vint: kotlin.Int
|
||||
internal final val vlong: kotlin.Long
|
||||
internal final val vstring: kotlin.String
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package test
|
||||
|
||||
internal final class KotlinClass {
|
||||
public constructor KotlinClass()
|
||||
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val FOO: kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
public open class kt3698 {
|
||||
public constructor kt3698()
|
||||
|
||||
public/*package*/ final annotation class Foo : kotlin.Annotation {
|
||||
public/*package*/ constructor Foo(/*0*/ kotlin.Int)
|
||||
public final val value: kotlin.Int
|
||||
public abstract fun value(): kotlin.Int
|
||||
}
|
||||
|
||||
// Static members
|
||||
test.kt3698.Foo(value = 10: kotlin.Int) public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
package test
|
||||
|
||||
internal final class Test {
|
||||
public constructor Test()
|
||||
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
public final val valProp: kotlin.Int
|
||||
public final var varProp: kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
public/*package*/ open class staticClassProperty {
|
||||
public/*package*/ constructor staticClassProperty()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
package test
|
||||
|
||||
internal interface Test {
|
||||
|
||||
internal companion object Companion {
|
||||
private constructor Companion()
|
||||
public final val valProp: kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
public/*package*/ open class staticTraitProperty {
|
||||
public/*package*/ constructor staticTraitProperty()
|
||||
|
||||
// Static members
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
Reference in New Issue
Block a user