JVM_IR: remove constructors of nested annotations

This commit is contained in:
pyos
2019-12-19 14:43:09 +01:00
committed by max-kammerer
parent 17d2fda946
commit 59f2aa7add
8 changed files with 43 additions and 11 deletions
@@ -0,0 +1,8 @@
annotation class Foo {
annotation class Bar
}
@Foo.Bar
fun box(): String {
return "OK"
}