Deserialize annotations on package members

This commit is contained in:
Alexander Udalov
2013-07-05 23:44:00 +04:00
parent 67ca7b78c4
commit e63cef0848
11 changed files with 112 additions and 17 deletions
@@ -0,0 +1,5 @@
package test
annotation class Anno
Anno fun function() {}
@@ -0,0 +1,7 @@
package test
test.Anno() internal fun function(): jet.Unit
internal final annotation class Anno : jet.Annotation {
/*primary*/ public constructor Anno()
}