e2f75463d7
Don't reconfigure runtime before every test. For consistency, mark tests that require the runtime with directives instead of relying on test file names.
9 lines
147 B
Plaintext
Vendored
9 lines
147 B
Plaintext
Vendored
// "Fix with 'asDynamic'" "true"
|
|
// JS
|
|
|
|
class A
|
|
|
|
@Suppress("NOTHING_TO_INLINE")
|
|
inline fun A.bar(a: Int, b: String): Unit = asDynamic().bar(a, b)
|
|
|