Rename CompileKotlinAgainstCustomJava test
It's not against Java per se, but rather any binaries
This commit is contained in:
BIN
Binary file not shown.
BIN
Binary file not shown.
+9
@@ -0,0 +1,9 @@
|
||||
package test
|
||||
|
||||
import testing.*
|
||||
|
||||
val testObjectProperty = TopLevelObject
|
||||
|
||||
val outer = Outer()
|
||||
val inn3r = Outer().Inner()
|
||||
val nested = Outer.Nested()
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
internal val inn3r: testing.Outer.Inner
|
||||
internal val nested: testing.Outer.Nested
|
||||
internal val outer: testing.Outer
|
||||
internal val testObjectProperty: testing.TopLevelObject
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
package testing
|
||||
|
||||
object TopLevelObject
|
||||
|
||||
class Outer {
|
||||
inner class Inner
|
||||
class Nested
|
||||
}
|
||||
BIN
Binary file not shown.
+12
@@ -0,0 +1,12 @@
|
||||
package test
|
||||
|
||||
// To regenerate this test:
|
||||
// 1. Compile this file
|
||||
// 2. Delete test/E.class
|
||||
// 3. Pack test/ into jar
|
||||
|
||||
enum class E { ENTRY }
|
||||
|
||||
annotation class Anno(val e: E)
|
||||
|
||||
Anno(E.ENTRY) open class Class
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
class Subclass : Class()
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
package test
|
||||
|
||||
internal final annotation class Anno : jet.Annotation {
|
||||
public constructor Anno(/*0*/ e: [ERROR : test.E])
|
||||
internal final val e: [ERROR : test.E]
|
||||
}
|
||||
|
||||
test.Anno(e = Unresolved enum entry: test.E.ENTRY: [ERROR : Unresolved enum entry: test.E.ENTRY]) internal open class Class {
|
||||
public constructor Class()
|
||||
}
|
||||
|
||||
internal final class Subclass : test.Class {
|
||||
public constructor Subclass()
|
||||
}
|
||||
Reference in New Issue
Block a user