JS: add restrictions to external modifier according to KT-13893

This commit is contained in:
Alexey Andreev
2016-11-25 17:52:40 +03:00
parent c0c6992ea6
commit d0ffb5bd32
26 changed files with 298 additions and 290 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
package foo
external class A(val c: Int) {
external companion object {
val g: Int = noImpl
companion object {
val g: Int
val c: String = noImpl
}
}