Mute failed jvm ir tests

This commit is contained in:
Mikhael Bogdanov
2018-06-28 11:45:21 +02:00
parent a10c06eb4d
commit e149cbe852
1890 changed files with 1890 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface BK {
fun x() : Int = 50
}
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class M() {
open var y = 500
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
//inspired by kt3492
interface BK {
fun foo(): String
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface Base {
val foo: String
fun bar(): String
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
//inspired by kt3492
interface Base {
val foo: String
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface T {
open fun baz(): String = "T.baz"
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface T {
open val baz: String
get() = "T.baz"
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A {
open fun foo2(): String = "OK"
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A {
open val foo: String = "OK"
}
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface ATrait {
open fun foo2(): String = "OK"
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface A {
open val foo: String
get() = "OK"
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class C(val f: () -> Unit) {
fun test() {
f()
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class X(var s: ()-> Unit)
open class C(val f: X) {
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class C(s: Int) {
fun test() {
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
abstract class WaitFor {
init {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
open class Base(val addr: Long, val name: String)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
abstract class Base(val s: String, vararg ints: Int)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class Foo(val value: String) {
open inner class Inner(val d: Double = -1.0, val s: String, vararg val y: Int) {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
fun box(): String {
val capture = "O"
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class Base() {
open fun baseFun(): String = "Base.baseFun()"