FIR: make rendering of type parameters similar to original Kotlin

This commit is contained in:
Mikhail Glukhikh
2019-04-09 15:32:59 +03:00
parent 0c334163ab
commit 568e831651
178 changed files with 278 additions and 269 deletions
@@ -1,5 +1,5 @@
FILE: Strange.kt
<out T> public abstract interface Strange : R|kotlin/Any| {
public abstract interface Strange<out T> : R|kotlin/Any| {
public abstract fun foo(): R|T|
}