JS backend: fix annotation class compilation.

This commit is contained in:
Zalim Bashorov
2014-09-16 14:14:48 +04:00
parent 1905401273
commit 9b065a89b9
3 changed files with 38 additions and 1 deletions
@@ -0,0 +1,9 @@
package foo
annotation class bar
public annotation class Baz(val a: String)
fun box(): String {
return "OK"
}