Mute tests with standard collection extensions in native

This commit is contained in:
Ilya Matveev
2017-03-09 16:49:39 +03:00
committed by ilmat192
parent 29e5ad5abe
commit eda43c8b45
16 changed files with 24 additions and 1 deletions
@@ -1,3 +1,5 @@
// IGNORE_BACKEND: NATIVE
interface Container {
fun removeAt(x: Int): String
}
+2
View File
@@ -1,3 +1,5 @@
// IGNORE_BACKEND: NATIVE
class A : Map<String, String> {
override val size: Int get() = 56
@@ -1,3 +1,5 @@
// IGNORE_BACKEND: NATIVE
var result = ""
public abstract class AbstractFoo<K, V> : Map<K, V> {
@@ -1,3 +1,5 @@
// IGNORE_BACKEND: NATIVE
open class A0<E> : MutableList<E> {
override fun add(element: E): Boolean {
throw UnsupportedOperationException()