From 26ea0be6358949a5d384fc02446732a1566996aa Mon Sep 17 00:00:00 2001 From: Ilya Kirillov Date: Mon, 19 Apr 2021 13:45:57 +0200 Subject: [PATCH] FIR IDE: temporary update testdata until diagnostic collection for delegated objects is fixed --- idea/testData/checker/ObjectLiteralInDelegate.fir.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/idea/testData/checker/ObjectLiteralInDelegate.fir.kt b/idea/testData/checker/ObjectLiteralInDelegate.fir.kt index c4ff14021b3..e542fc8871d 100644 --- a/idea/testData/checker/ObjectLiteralInDelegate.fir.kt +++ b/idea/testData/checker/ObjectLiteralInDelegate.fir.kt @@ -3,11 +3,11 @@ interface A { fun get(x: Int) } -class B : A by object : A {} +class B : A by object : A {} -class C : A by (object : A {}) +class C : A by (object : A {}) -class D : A by 1 + (object : A {}) +class D : A by 1 + (object : A {}) fun bar() { val e = object : A by object : A {} {}