Minor: multi-platform highlighting tests rename
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
<error descr="[IMPLEMENTATION_WITHOUT_HEADER] Modifier 'impl' is only applicable to members that are initially declared in platform-independent code">impl</error> class My {
|
||||
|
||||
<error descr="[IMPLEMENTATION_WITHOUT_HEADER] Modifier 'impl' is only applicable to members that are initially declared in platform-independent code">impl</error> fun foo() = 42
|
||||
}
|
||||
|
||||
<error descr="[IMPLEMENTATION_WITHOUT_HEADER] Modifier 'impl' is only applicable to members that are initially declared in platform-independent code">impl</error> class Your {
|
||||
|
||||
<error descr="[IMPLEMENTATION_WITHOUT_HEADER] Modifier 'impl' is only applicable to members that are initially declared in platform-independent code">impl</error> fun foo() = 13
|
||||
|
||||
<error descr="[IMPLEMENTATION_WITHOUT_HEADER] Modifier 'impl' is only applicable to members that are initially declared in platform-independent code">impl</error> fun bar(arg: Int) = arg
|
||||
|
||||
}
|
||||
|
||||
impl class His {
|
||||
|
||||
impl fun foo() = 7
|
||||
|
||||
impl fun bar(arg: Int) = arg == foo()
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user