Failed test clean up
Relates to ^KT-40960
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
Actual data differs from file content: ClassObject.source.expected expected:<[main.kt
|
||||
companion <1>object {
|
||||
fun <2>foo() {]
|
||||
> but was:<[ WithInnerAndObject.class
|
||||
public companion <1>object {
|
||||
public final fun <2>foo(): kotlin.Unit { /* compiled code */ }]
|
||||
>
|
||||
@@ -1,7 +0,0 @@
|
||||
Actual data differs from file content: ClassObject.source.expected expected:<[main.kt
|
||||
companion <1>object {
|
||||
fun <2>foo() {]
|
||||
> but was:<[ WithInnerAndObject.class
|
||||
public companion <1>object {
|
||||
public final fun <2>foo(): kotlin.Unit { /* compiled code */ }]
|
||||
>
|
||||
@@ -1,7 +0,0 @@
|
||||
Actual data differs from file content: Constructor.source.expected expected:<[main.kt
|
||||
public class <1><3>ClassWithConstructor<2>(val a: String, b: Any) {
|
||||
<4>constructor(a: String): this(a, a)]
|
||||
> but was:<[ ClassWithConstructor.class
|
||||
public final class <1><3>ClassWithConstructor public <2>constructor(a: kotlin.String, b: kotlin.Any) {
|
||||
public <4>constructor(a: kotlin.String) { /* compiled code */ }]
|
||||
>
|
||||
@@ -1,7 +0,0 @@
|
||||
Actual data differs from file content: Constructor.source.expected expected:<[main.kt
|
||||
public class <1><3>ClassWithConstructor<2>(val a: String, b: Any) {
|
||||
<4>constructor(a: String): this(a, a)]
|
||||
> but was:<[ ClassWithConstructor.class
|
||||
public final class <1><3>ClassWithConstructor public <2>constructor(a: kotlin.String, b: kotlin.Any) {
|
||||
public <4>constructor(a: kotlin.String) { /* compiled code */ }]
|
||||
>
|
||||
@@ -1,13 +0,0 @@
|
||||
Actual data differs from file content: Enum.source.expected expected:<[main.kt
|
||||
public enum class <1><2>Color(val <4>rgb : Int) {
|
||||
<3>RED(0xFF0000),]
|
||||
> but was:<[ Color.class
|
||||
public final enum class <1><2>Color private constructor(rgb: kotlin.Int) : kotlin.Enum<testData.libraries.Color> {
|
||||
<3>RED,
|
||||
|
||||
GREEN,
|
||||
|
||||
BLUE;
|
||||
|
||||
public final val <4>rgb: kotlin.Int /* compiled code */]
|
||||
>
|
||||
@@ -1,13 +0,0 @@
|
||||
Actual data differs from file content: Enum.source.expected expected:<[main.kt
|
||||
public enum class <1><2>Color(val <4>rgb : Int) {
|
||||
<3>RED(0xFF0000),]
|
||||
> but was:<[ Color.class
|
||||
public final enum class <1><2>Color private constructor(rgb: kotlin.Int) : kotlin.Enum<testData.libraries.Color> {
|
||||
<3>RED,
|
||||
|
||||
GREEN,
|
||||
|
||||
BLUE;
|
||||
|
||||
public final val <4>rgb: kotlin.Int /* compiled code */]
|
||||
>
|
||||
@@ -1,5 +0,0 @@
|
||||
Actual data differs from file content: ExtensionFunction.source.expected expected:<[main.kt
|
||||
public inline fun <T> T.<1>filter(predicate: (T)-> Boolean) : T? = this]
|
||||
> but was:<[ MainKt.class
|
||||
public inline fun <T> T.<1>filter(predicate: (T) -> kotlin.Boolean): T? { /* compiled code */ }]
|
||||
>
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
Actual data differs from file content: ExtensionFunction.source.expected expected:<[main.kt
|
||||
public inline fun <T> T.<1>filter(predicate: (T)-> Boolean) : T? = this]
|
||||
> but was:<[ MainKt.class
|
||||
public inline fun <T> T.<1>filter(predicate: (T) -> kotlin.Boolean): T? { /* compiled code */ }]
|
||||
>
|
||||
-21
@@ -1,21 +0,0 @@
|
||||
Actual data differs from file content: ExtensionProperty.source.expected expected:<[main.kt
|
||||
public val String.<1>exProp : String
|
||||
get() {
|
||||
return this
|
||||
}
|
||||
|
||||
public val Int.exProp : Int
|
||||
get() {
|
||||
return this
|
||||
}
|
||||
|
||||
public class Pair<A, B><2>(val first: A, val second: B)
|
||||
|
||||
public val <T> Pair<T, T>.<3>exProp : String]
|
||||
> but was:<[ MainKt.class
|
||||
public val kotlin.String.<1>exProp: kotlin.String /* compiled code */
|
||||
|
||||
public val <T> testData.libraries.Pair<T, T>.<3>exProp: kotlin.String /* compiled code */
|
||||
Pair.class
|
||||
public final class Pair<A, B> public <2>constructor(first: A, second: B) {]
|
||||
>
|
||||
-21
@@ -1,21 +0,0 @@
|
||||
Actual data differs from file content: ExtensionProperty.source.expected expected:<[main.kt
|
||||
public val String.<1>exProp : String
|
||||
get() {
|
||||
return this
|
||||
}
|
||||
|
||||
public val Int.exProp : Int
|
||||
get() {
|
||||
return this
|
||||
}
|
||||
|
||||
public class Pair<A, B><2>(val first: A, val second: B)
|
||||
|
||||
public val <T> Pair<T, T>.<3>exProp : String]
|
||||
> but was:<[ MainKt.class
|
||||
public val kotlin.String.<1>exProp: kotlin.String /* compiled code */
|
||||
|
||||
public val <T> testData.libraries.Pair<T, T>.<3>exProp: kotlin.String /* compiled code */
|
||||
Pair.class
|
||||
public final class Pair<A, B> public <2>constructor(first: A, second: B) {]
|
||||
>
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
Actual data differs from file content: GenericFunctionWithExplicitlyDeclaredTypeArguments.source.expected expected:<[main.kt
|
||||
public fun <T> <1>genericFunc() : T = throw Exception()]
|
||||
> but was:<[ MainKt.class
|
||||
public fun <T> <1>genericFunc(): T { /* compiled code */ }]
|
||||
>
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
Actual data differs from file content: GenericFunctionWithExplicitlyDeclaredTypeArguments.source.expected expected:<[main.kt
|
||||
public fun <T> <1>genericFunc() : T = throw Exception()]
|
||||
> but was:<[ MainKt.class
|
||||
public fun <T> <1>genericFunc(): T { /* compiled code */ }]
|
||||
>
|
||||
idea/testData/decompiler/navigation/usercode/GenericFunctionWithInferredTypeArguments.kt.libsrc.fail
Vendored
-5
@@ -1,5 +0,0 @@
|
||||
Actual data differs from file content: GenericFunctionWithInferredTypeArguments.source.expected expected:<[main.kt
|
||||
public fun <T> <1>genericFunc() : T = throw Exception()]
|
||||
> but was:<[ MainKt.class
|
||||
public fun <T> <1>genericFunc(): T { /* compiled code */ }]
|
||||
>
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
Actual data differs from file content: GenericFunctionWithInferredTypeArguments.source.expected expected:<[main.kt
|
||||
public fun <T> <1>genericFunc() : T = throw Exception()]
|
||||
> but was:<[ MainKt.class
|
||||
public fun <T> <1>genericFunc(): T { /* compiled code */ }]
|
||||
>
|
||||
@@ -1,17 +0,0 @@
|
||||
Actual data differs from file content: GlobalFunction.source.expected expected:<[main.kt
|
||||
public fun <1><2>func(a : Int, b : String = "55") {
|
||||
}
|
||||
|
||||
public fun <3>func(a : Int, b : Int) {
|
||||
}
|
||||
|
||||
public fun <4>func() {]
|
||||
> but was:<[ MainKt.class
|
||||
public fun <4>func(): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
public fun func(cs: kotlin.CharSequence): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
public fun <3>func(a: kotlin.Int, b: kotlin.Int): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
public fun <1><2>func(a: kotlin.Int, b: kotlin.String /* = compiled code */): kotlin.Unit { /* compiled code */ }]
|
||||
>
|
||||
@@ -1,17 +0,0 @@
|
||||
Actual data differs from file content: GlobalFunction.source.expected expected:<[main.kt
|
||||
public fun <1><2>func(a : Int, b : String = "55") {
|
||||
}
|
||||
|
||||
public fun <3>func(a : Int, b : Int) {
|
||||
}
|
||||
|
||||
public fun <4>func() {]
|
||||
> but was:<[ MainKt.class
|
||||
public fun <4>func(): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
public fun func(cs: kotlin.CharSequence): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
public fun <3>func(a: kotlin.Int, b: kotlin.Int): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
public fun <1><2>func(a: kotlin.Int, b: kotlin.String /* = compiled code */): kotlin.Unit { /* compiled code */ }]
|
||||
>
|
||||
@@ -1,9 +0,0 @@
|
||||
Actual data differs from file content: GlobalProperty.source.expected expected:<[main.kt
|
||||
public val <1>globalVal : Pair<Int, String> = Pair(239, "239")
|
||||
|
||||
public val <2>globalValWithGetter : Long]
|
||||
> but was:<[ MainKt.class
|
||||
public val <1>globalVal: testData.libraries.Pair<kotlin.Int, kotlin.String> /* compiled code */
|
||||
|
||||
public val <2>globalValWithGetter: kotlin.Long /* compiled code */]
|
||||
>
|
||||
@@ -1,9 +0,0 @@
|
||||
Actual data differs from file content: GlobalProperty.source.expected expected:<[main.kt
|
||||
public val <1>globalVal : Pair<Int, String> = Pair(239, "239")
|
||||
|
||||
public val <2>globalValWithGetter : Long]
|
||||
> but was:<[ MainKt.class
|
||||
public val <1>globalVal: testData.libraries.Pair<kotlin.Int, kotlin.String> /* compiled code */
|
||||
|
||||
public val <2>globalValWithGetter: kotlin.Long /* compiled code */]
|
||||
>
|
||||
@@ -1,7 +0,0 @@
|
||||
Actual data differs from file content: NamedObject.source.expected expected:<[main.kt
|
||||
public object <1>NamedObject {
|
||||
public val <2>objectMember: Int = 1]
|
||||
> but was:<[ NamedObject.class
|
||||
public object <1>NamedObject {
|
||||
public final val <2>objectMember: kotlin.Int /* compiled code */]
|
||||
>
|
||||
@@ -1,7 +0,0 @@
|
||||
Actual data differs from file content: NamedObject.source.expected expected:<[main.kt
|
||||
public object <1>NamedObject {
|
||||
public val <2>objectMember: Int = 1]
|
||||
> but was:<[ NamedObject.class
|
||||
public object <1>NamedObject {
|
||||
public final val <2>objectMember: kotlin.Int /* compiled code */]
|
||||
>
|
||||
-10
@@ -1,10 +0,0 @@
|
||||
Actual data differs from file content: OverloadedFunWithTypeParam.source.expected expected:<[main.kt
|
||||
public fun <T: CharSequence> <2>funWithTypeParam(t: T) {
|
||||
}
|
||||
|
||||
public fun <T: Number> <1>funWithTypeParam(t: T) {]
|
||||
> but was:<[ MainKt.class
|
||||
public fun <T : kotlin.CharSequence> <2>funWithTypeParam(t: T): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
public fun <T : kotlin.Number> <1>funWithTypeParam(t: T): kotlin.Unit { /* compiled code */ }]
|
||||
>
|
||||
-10
@@ -1,10 +0,0 @@
|
||||
Actual data differs from file content: OverloadedFunWithTypeParam.source.expected expected:<[main.kt
|
||||
public fun <T: CharSequence> <2>funWithTypeParam(t: T) {
|
||||
}
|
||||
|
||||
public fun <T: Number> <1>funWithTypeParam(t: T) {]
|
||||
> but was:<[ MainKt.class
|
||||
public fun <T : kotlin.CharSequence> <2>funWithTypeParam(t: T): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
public fun <T : kotlin.Number> <1>funWithTypeParam(t: T): kotlin.Unit { /* compiled code */ }]
|
||||
>
|
||||
Vendored
@@ -1,20 +0,0 @@
|
||||
Actual data differs from file content: Property.source.expected expected:<[main.kt
|
||||
public abstract class <1>ClassWithAbstractAndOpenMembers {
|
||||
public abstract fun abstractFun()
|
||||
public open fun openFun() {
|
||||
}
|
||||
|
||||
public abstract val abstractVal : String
|
||||
public open val openVal : String = ""
|
||||
public open val openValWithGetter : String
|
||||
get() {
|
||||
return "239"
|
||||
}
|
||||
|
||||
public abstract var <2><3>abstractVar : ]String
|
||||
> but was:<[ ClassWithAbstractAndOpenMembers.class
|
||||
public abstract class <1>ClassWithAbstractAndOpenMembers public constructor() {
|
||||
public abstract val abstractVal: kotlin.String
|
||||
|
||||
public abstract var <2><3>abstractVar: kotlin.]String
|
||||
>
|
||||
@@ -1,20 +0,0 @@
|
||||
Actual data differs from file content: Property.source.expected expected:<[main.kt
|
||||
public abstract class <1>ClassWithAbstractAndOpenMembers {
|
||||
public abstract fun abstractFun()
|
||||
public open fun openFun() {
|
||||
}
|
||||
|
||||
public abstract val abstractVal : String
|
||||
public open val openVal : String = ""
|
||||
public open val openValWithGetter : String
|
||||
get() {
|
||||
return "239"
|
||||
}
|
||||
|
||||
public abstract var <2><3>abstractVar : ]String
|
||||
> but was:<[ ClassWithAbstractAndOpenMembers.class
|
||||
public abstract class <1>ClassWithAbstractAndOpenMembers public constructor() {
|
||||
public abstract val abstractVal: kotlin.String
|
||||
|
||||
public abstract var <2><3>abstractVar: kotlin.]String
|
||||
>
|
||||
-9
@@ -1,9 +0,0 @@
|
||||
Actual data differs from file content: SameNameInDifferentSources.source.expected expected:<[extra.kt
|
||||
public fun <1>func(str : kotlin.String) {
|
||||
main.kt
|
||||
public fun <2>func(a : Int, b : String = "55") {]
|
||||
> but was:<[ ExtraKt.class
|
||||
public fun <1>func(str: kotlin.String): kotlin.Unit { /* compiled code */ }
|
||||
MainKt.class
|
||||
public fun <2>func(a: kotlin.Int, b: kotlin.String /* = compiled code */): kotlin.Unit { /* compiled code */ }]
|
||||
>
|
||||
-9
@@ -1,9 +0,0 @@
|
||||
Actual data differs from file content: SameNameInDifferentSources.source.expected expected:<[extra.kt
|
||||
public fun <1>func(str : kotlin.String) {
|
||||
main.kt
|
||||
public fun <2>func(a : Int, b : String = "55") {]
|
||||
> but was:<[ ExtraKt.class
|
||||
public fun <1>func(str: kotlin.String): kotlin.Unit { /* compiled code */ }
|
||||
MainKt.class
|
||||
public fun <2>func(a: kotlin.Int, b: kotlin.String /* = compiled code */): kotlin.Unit { /* compiled code */ }]
|
||||
>
|
||||
Vendored
@@ -1,5 +0,0 @@
|
||||
Actual data differs from file content: TypeAlias.source.expected expected:< [main.kt
|
||||
typealias <1><2>SimpleClassAlias = ]SimpleClass
|
||||
> but was:< [MainKt.class
|
||||
public typealias <1><2>SimpleClassAlias = testData.libraries.]SimpleClass
|
||||
>
|
||||
@@ -1,5 +0,0 @@
|
||||
Actual data differs from file content: TypeAlias.source.expected expected:< [main.kt
|
||||
typealias <1><2>SimpleClassAlias = ]SimpleClass
|
||||
> but was:< [MainKt.class
|
||||
public typealias <1><2>SimpleClassAlias = testData.libraries.]SimpleClass
|
||||
>
|
||||
-13
@@ -1,13 +0,0 @@
|
||||
Actual data differs from file content: TypeWithSameShortName.source.expected expected:< [extra.kt
|
||||
public fun <2>processDouble(d: Double) {}
|
||||
|
||||
public fun <1>processDouble(d: kotlin.Double) {}
|
||||
main.kt
|
||||
public class <3>Double]
|
||||
> but was:< [Double.class
|
||||
public final class Double public <3>constructor() {
|
||||
ExtraKt.class
|
||||
public fun <1>processDouble(d: kotlin.Double): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
public fun <2>processDouble(d: testData.libraries.Double): kotlin.Unit { /* compiled code */ }]
|
||||
>
|
||||
-13
@@ -1,13 +0,0 @@
|
||||
Actual data differs from file content: TypeWithSameShortName.source.expected expected:< [extra.kt
|
||||
public fun <2>processDouble(d: Double) {}
|
||||
|
||||
public fun <1>processDouble(d: kotlin.Double) {}
|
||||
main.kt
|
||||
public class <3>Double]
|
||||
> but was:< [Double.class
|
||||
public final class Double public <3>constructor() {
|
||||
ExtraKt.class
|
||||
public fun <1>processDouble(d: kotlin.Double): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
public fun <2>processDouble(d: testData.libraries.Double): kotlin.Unit { /* compiled code */ }]
|
||||
>
|
||||
@@ -1 +0,0 @@
|
||||
Context 'val test: Test? = null' wasn't found in file ReferenceTest.class
|
||||
@@ -1 +0,0 @@
|
||||
Context 'val a = p' wasn't found in file FunParameter.class
|
||||
@@ -1 +0,0 @@
|
||||
Context 'return local()' wasn't found in file LocalFunKt.class
|
||||
@@ -34,11 +34,6 @@ org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.S
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSmartCast, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSmartCast2, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSyntheticExtensions1, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromJSLibrarySourcesTest.testIcon, Unprocessed,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testBuiltinClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testJdkClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testLightClassForLibrarySource, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testOurKotlinClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testClassObject, KT-34542, FAIL,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testConstructor, KT-34542, FAIL,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testEnum, KT-34542, FAIL,
|
||||
|
||||
|
@@ -21,11 +21,6 @@ org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.S
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSmartCast, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSmartCast2, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSyntheticExtensions1, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromJSLibrarySourcesTest.testIcon, Unprocessed,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testBuiltinClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testJdkClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testLightClassForLibrarySource, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testOurKotlinClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testClassObject, KT-34542, FAIL,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testConstructor, KT-34542, FAIL,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testEnum, KT-34542, FAIL,
|
||||
|
||||
@@ -34,11 +34,6 @@ org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.S
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSmartCast, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSmartCast2, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSyntheticExtensions1, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromJSLibrarySourcesTest.testIcon, Unprocessed,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testBuiltinClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testJdkClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testLightClassForLibrarySource, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testOurKotlinClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testClassObject, KT-34542, FAIL,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testConstructor, KT-34542, FAIL,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testEnum, KT-34542, FAIL,
|
||||
|
||||
@@ -23,11 +23,6 @@ org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.S
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSmartCast, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSmartCast2, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.completion.test.JvmBasicCompletionTestGenerated.Java.SyntheticExtensions.testSyntheticExtensions1, KT-32919,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromJSLibrarySourcesTest.testIcon, Unprocessed,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testBuiltinClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testJdkClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testLightClassForLibrarySource, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateFromLibrarySourcesTest.testOurKotlinClass, KT-34542,,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testClassObject, KT-34542, FAIL,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testConstructor, KT-34542, FAIL,
|
||||
org.jetbrains.kotlin.idea.decompiler.navigation.NavigateToLibrarySourceTestGenerated.testEnum, KT-34542, FAIL,
|
||||
|
||||
Reference in New Issue
Block a user