Workaround an inliner problem upon which the compiler code itself stumbled

^KT-35856 Fixed
This commit is contained in:
Victor Petukhov
2020-01-10 12:04:37 +03:00
parent 5b8ab76613
commit 5917591205
7 changed files with 63 additions and 3 deletions
@@ -0,0 +1,12 @@
// Issue: KT-35856
// FILE: Bar.java
@Anno
public interface Bar {}
// FILE: Foo.kt
@Target(AnnotationTarget.FILE, AnnotationTarget.CLASS)
@Retention(AnnotationRetention.BINARY)
annotation class Anno
class Foo : Bar