diff --git a/compiler/testData/cfg/expressions/parenthesizedSelector.values b/compiler/testData/cfg/expressions/parenthesizedSelector.values index bbe1634bf92..860e6638a10 100644 --- a/compiler/testData/cfg/expressions/parenthesizedSelector.values +++ b/compiler/testData/cfg/expressions/parenthesizedSelector.values @@ -6,7 +6,7 @@ fun with(t: T, f : T.() -> Unit) { : {<: T} NEW: magic[FAKE_INITIALIZER](t: T) -> : {<: T.() -> Unit} NEW: magic[FAKE_INITIALIZER](f : T.() -> Unit) -> t : {<: T} NEW: r(t) -> -f : {<: T.() -> Unit} NEW: r(f) -> +f : {<: (T) -> Unit} NEW: r(f) -> f() : * NEW: call(f(), invoke|, ) -> t.f() : * COPY { t.f() } : * COPY @@ -32,11 +32,11 @@ with(1) { "".(foo)() } : * NEW: call(with(1) { "". "".(foo)() } --------------------- - : Int NEW: magic[IMPLICIT_RECEIVER](foo) -> -"" : String NEW: r("") -> -foo : {<: String.() -> Unit} NEW: r(foo|) -> -(foo) : {<: String.() -> Unit} COPY -(foo)() : * NEW: call((foo)(), invoke|, ) -> -"".(foo)() : * COPY -"".(foo)() : * COPY + : Int NEW: magic[IMPLICIT_RECEIVER](foo) -> +"" : String NEW: r("") -> +foo : {<: (String) -> Unit} NEW: r(foo|) -> +(foo) : {<: (String) -> Unit} COPY +(foo)() : * NEW: call((foo)(), invoke|, ) -> +"".(foo)() : * COPY +"".(foo)() : * COPY =====================