JVM_IR KT-43459 fix $annotations method receiver type

This commit is contained in:
Dmitry Petrov
2020-12-01 12:03:39 +03:00
parent 85b5948931
commit 2b4564059e
5 changed files with 48 additions and 2 deletions
@@ -0,0 +1,10 @@
annotation class Anno
@Target(AnnotationTarget.TYPE)
annotation class TypeAnno
class A {
@Anno
val @TypeAnno Int?.a: String
get() = ""
}