KT-2752: add checkers for inconsistent usage of JsName

This commit is contained in:
Alexey Andreev
2016-06-01 18:28:06 +03:00
parent 638952e96e
commit 6e1a0901ac
27 changed files with 364 additions and 94 deletions
@@ -0,0 +1,12 @@
package foo
fun bar() = 23
private val bar = 32
fun box(): String {
assertEquals(23, bar())
assertEquals(32, bar)
return "OK"
}