Minor, move builtins serializer test data

This commit is contained in:
Alexander Udalov
2015-02-04 13:50:32 +03:00
parent c3909ebbd7
commit 37da154ea2
17 changed files with 1 additions and 1 deletions
@@ -0,0 +1,14 @@
package test
annotation class Empty
annotation class JustAnnotation(val annotation: Empty)
annotation class AnnotationArray(val annotationArray: Array<JustAnnotation>)
JustAnnotation(Empty())
AnnotationArray(array())
class C1
AnnotationArray(array(JustAnnotation(Empty()), JustAnnotation(Empty())))
class C2