Rename CompileKotlinAgainstCustomJava test

It's not against Java per se, but rather any binaries
This commit is contained in:
Alexander Udalov
2013-09-05 18:21:35 +04:00
parent 9d2add81f8
commit b69970d621
12 changed files with 20 additions and 20 deletions
@@ -0,0 +1,9 @@
package test
import testing.*
val testObjectProperty = TopLevelObject
val outer = Outer()
val inn3r = Outer().Inner()
val nested = Outer.Nested()
@@ -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
@@ -0,0 +1,8 @@
package testing
object TopLevelObject
class Outer {
inner class Inner
class Nested
}
@@ -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
@@ -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()
}