Fix exception from backend in light classes mode for null passed as annotation argument

This commit is contained in:
Pavel V. Talanov
2015-11-02 19:46:53 +03:00
parent 7e091d0df4
commit f5c4f82971
3 changed files with 25 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
// test for KT-5337
package test
annotation class A(val value: String)
@A(<error>null</error>)
fun foo() {}
@A(<error>null</error>)
class B