FIR IDE: temporary update testdata until diagnostic collection for delegated objects is fixed
This commit is contained in:
+3
-3
@@ -3,11 +3,11 @@ interface A {
|
|||||||
fun get(x: Int)
|
fun get(x: Int)
|
||||||
}
|
}
|
||||||
|
|
||||||
class B : A by <error descr="[ABSTRACT_MEMBER_NOT_IMPLEMENTED] Object <anonymous> is not abstract and does not implement abstract member get">object</error> : A {}
|
class B : A by object : A {}
|
||||||
|
|
||||||
class C : A by (<error descr="[ABSTRACT_MEMBER_NOT_IMPLEMENTED] Object <anonymous> is not abstract and does not implement abstract member get">object</error> : A {})
|
class C : A by (object : A {})
|
||||||
|
|
||||||
class D : A by 1 <error descr="[NONE_APPLICABLE] None of the following functions are applicable: [kotlin/Int.plus, kotlin/Int.plus, kotlin/Int.plus, ...]">+</error> (<error descr="[ABSTRACT_MEMBER_NOT_IMPLEMENTED] Object <anonymous> is not abstract and does not implement abstract member get">object</error> : A {})
|
class D : A by 1 <error descr="[NONE_APPLICABLE] None of the following functions are applicable: [kotlin/Int.plus, kotlin/Int.plus, kotlin/Int.plus, ...]">+</error> (object : A {})
|
||||||
|
|
||||||
fun bar() {
|
fun bar() {
|
||||||
val e = object : A by <error descr="[ABSTRACT_MEMBER_NOT_IMPLEMENTED] Object <anonymous> is not abstract and does not implement abstract member get">object</error> : A {} {}
|
val e = object : A by <error descr="[ABSTRACT_MEMBER_NOT_IMPLEMENTED] Object <anonymous> is not abstract and does not implement abstract member get">object</error> : A {} {}
|
||||||
|
|||||||
Reference in New Issue
Block a user