[FIR] Reorder scopes for KT-34822

This commit is contained in:
Nikolay Lunyak
2021-09-28 15:06:28 +03:00
parent 1d2c1140a4
commit e5d5e5be44
7 changed files with 40 additions and 26 deletions
@@ -1,8 +1,8 @@
interface Some
abstract class My<T : Some> {
open inner class T
abstract val x: My<T>.T
abstract fun foo(arg: My<T>.T)
abstract val x: T
abstract fun foo(arg: T)
abstract val y: My<Some>.T
abstract val z: My<Some>.T
abstract class Some : My<Some>.T
@@ -1,8 +1,8 @@
interface Some
abstract class My<T : Some> {
open inner class T
abstract val x: My<T>.T
abstract fun foo(arg: My<T>.T)
abstract val x: T
abstract fun foo(arg: T)
abstract val y: My<Some>.T
abstract val z: My<Some>.T
abstract class Some : My<Some>.T