backend/tests/external: Mute tests with java collection inheritance

This commit is contained in:
Svyatoslav Scherbina
2017-03-10 12:22:11 +07:00
committed by SvyatoslavScherbina
parent 7f72c1c037
commit 06ba63af06
2 changed files with 3 additions and 0 deletions
@@ -1,3 +1,5 @@
// IGNORE_BACKEND: NATIVE
interface A : Set<String>
class B : A, HashSet<String>()
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: NATIVE
class IntArrayList(): ArrayList<Int>() {
override fun get(index: Int): Int = super.get(index)