Don't assert that annotation class has constructor in AnnotationDeserializer

#KT-9758 Fixed
This commit is contained in:
Alexander Udalov
2015-11-03 15:24:20 +03:00
parent 1a0c2e2cf6
commit 748c0e7149
8 changed files with 53 additions and 12 deletions
@@ -0,0 +1,7 @@
package test
@Ann("class")
class Test {
@Ann("function")
fun foo(@Ann("parameter") s: @Ann("parameter type") String): @Ann("return type") String = @Ann("expression") s
}