WASM: Disable bunch of tests which expose the same issue after switch to the wasm native strings
This commit is contained in:
committed by
TeamCityServer
parent
80140207b5
commit
c526145a48
@@ -1,3 +1,8 @@
|
||||
// DONT_TARGET_EXACT_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: FAKE_OVERRIDE_ISSUES
|
||||
// On wasm this will produce conflicting return types, foo will return Any but we will try to interpret it as String.
|
||||
// Before wasm native strings this worked by chance because we added unbox intrinsic for strings.
|
||||
|
||||
open class Foo {
|
||||
open fun foo(x: CharSequence = "O"): CharSequence = x
|
||||
}
|
||||
|
||||
+5
@@ -1,3 +1,8 @@
|
||||
// DONT_TARGET_EXACT_BACKEND: WASM
|
||||
// WASM_MUTE_REASON: FAKE_OVERRIDE_ISSUES
|
||||
// On wasm this will produce conflicting return types, foo will return Any but we will try to interpret it as String.
|
||||
// Before wasm native strings this worked by chance because we added unbox intrinsic for strings.
|
||||
|
||||
open class Foo {
|
||||
open fun foo(x: CharSequence = "O"): CharSequence = x
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user