[FIR] Properly add the outer type parameters

Looks like a type.

^KT-59393 Fixed
(because other differences are related to
nested typealiases)
This commit is contained in:
Nikolay Lunyak
2023-07-11 12:02:18 +03:00
committed by Space Team
parent 4bba93f633
commit a41273b966
4 changed files with 9 additions and 10 deletions
@@ -19,8 +19,8 @@ fun test() {
a<Foo.Bar<String>>()
a<Foo.Bar.Baz>()
Foo<String>.Bar::class
Foo<String>.Bar.Baz::class
<!CLASS_LITERAL_LHS_NOT_A_CLASS!>Foo<String>.Bar::class<!>
<!WRONG_NUMBER_OF_TYPE_ARGUMENTS!>Foo<String>.Bar.Baz<!>::class
a<Foo<String>.<!WRONG_NUMBER_OF_TYPE_ARGUMENTS!>Bar<!>>()
a<Foo<!WRONG_NUMBER_OF_TYPE_ARGUMENTS!><String><!>.Bar.Baz>()