JS: update backend tests to respect new front-end rules for external declarations

This commit is contained in:
Alexey Andreev
2016-12-19 19:38:49 +03:00
parent 6ef4a3389e
commit 06e83e895f
8 changed files with 18 additions and 13 deletions
@@ -7,7 +7,7 @@ class A(val x: Int) {
}
external class B(x: Int) {
constructor(a: Int, b: Int) : this(0) {}
constructor(a: Int, b: Int) : this(0) { noImpl }
val x: Int
}