FIR IDE: unmute passing tests

fix unmute passing
This commit is contained in:
Ilya Kirillov
2021-01-06 18:25:58 +01:00
parent c97c4fa99c
commit 861c9b8e45
9 changed files with 15 additions and 1 deletions
+1
View File
@@ -1,3 +1,4 @@
// FIR_COMPARISON
object A {
val x : Int = 0
}
@@ -1,3 +1,5 @@
// FIR_COMPARISON
class Test
val localTest1 = Test() <error>-</error> 12
@@ -1,3 +1,5 @@
// FIR_COMPARISON
interface A {
fun foo()
}
@@ -1,3 +1,5 @@
// FIR_COMPARISON
class A
fun f() {
@@ -1,3 +1,5 @@
// FIR_COMPARISON
data class XY(val x: Int, val y: Int)
fun convert(xy: XY, f: (XY) -> Int) = f(xy)
@@ -1,2 +1,4 @@
// FIR_COMPARISON
val f = 1 <error>></error><EOLError descr="Expecting an element"></EOLError>
val g: Int = 3
@@ -1,3 +1,5 @@
// FIR_COMPARISON
object A {
class B
fun foo() = 1
@@ -1,3 +1,5 @@
// FIR_COMPARISON
interface Bar {
fun <T> T.bar() {}
}
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_FIR
// EXPECTED_DUPLICATED_HIGHLIGHTING
typealias <info textAttributesKey="KOTLIN_TYPE_ALIAS">Predicate</info><<info textAttributesKey="KOTLIN_TYPE_PARAMETER">T</info>> = (<info textAttributesKey="KOTLIN_TYPE_PARAMETER">T</info>) -> <info textAttributesKey="KOTLIN_CLASS">Boolean</info>