Minor, package "test" in compileJavaAgainstKotlin testData

This commit is contained in:
Alexander Udalov
2014-03-18 19:23:27 +04:00
parent 7b7619d1f3
commit b6b1f2a94a
105 changed files with 243 additions and 43 deletions
@@ -1,3 +1,5 @@
package test;
class ExtendsB extends B {
void test() {
byte x = foo();
@@ -1,3 +1,5 @@
package test
trait A<T> {
fun foo(): T
}
@@ -1,3 +1,5 @@
package test;
class Test {
void test() {
A<Integer> a = new B();
@@ -1,3 +1,5 @@
package test
trait A<T> {
fun foo(): T
}
@@ -1,3 +1,5 @@
package test;
class Test {
void test() {
A<Integer> a = new B();
@@ -1,3 +1,5 @@
package test
trait A<T> {
fun foo(): T
}
@@ -1,3 +1,5 @@
package test;
class Test extends B {
void test() {
int x = foo();
@@ -1,3 +1,5 @@
package test
trait A {
fun foo(): Any
}
@@ -1,3 +1,5 @@
package test;
class Test extends B {
void test() {
A<Integer> a = new B();
@@ -1,3 +1,5 @@
package test
trait A<T> {
fun foo(): T
}
@@ -1,3 +1,5 @@
package test;
class ExtendsB extends B {
void test() {
int x = foo();
@@ -1,3 +1,5 @@
package test
trait A<T : Comparable<T>> {
fun foo(): T
}
@@ -1,3 +1,5 @@
package test;
class ExtendsB extends B {
void test() {
int x = foo();
@@ -1,3 +1,5 @@
package test
trait A<T : Number> {
fun foo(): T
}
@@ -1,3 +1,5 @@
package test;
class ExtendsB extends B {
void test() {
int x = foo();
@@ -1,3 +1,5 @@
package test
trait A<T> {
fun foo(): T
}
@@ -1,3 +1,5 @@
package test;
class ExtendsD extends D {
void test() {
int x = foo();
@@ -1,3 +1,5 @@
package test
trait A<T> {
fun foo(): T
}
@@ -1,3 +1,5 @@
package test;
class ExtendsB extends B {
void test() {
int x = foo();
@@ -1,3 +1,5 @@
package test
trait A<T> {
fun foo(): T
}
@@ -1,3 +1,5 @@
package test;
class ExtendsB extends B {
@Override
public Integer foo() {
@@ -1,3 +1,5 @@
package test
trait A<T> {
fun foo(): T
}