Add FIR_IGNORE directive to test files that must be skipped
This commit is contained in:
committed by
Mikhail Glukhikh
parent
350bd33769
commit
24cce75899
@@ -1,3 +1,4 @@
|
||||
// FIR_IGNORE
|
||||
data class Vector(val x: Int, val y: Int) {
|
||||
// Vector
|
||||
// │ constructor Vector(Int, Int)
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IGNORE
|
||||
interface Base {
|
||||
fun printMessage()
|
||||
fun printMessageLine()
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IGNORE
|
||||
package p
|
||||
|
||||
class A {
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IGNORE
|
||||
package org.jetbrains.kotlin.test
|
||||
|
||||
// collections/List<Int>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IGNORE
|
||||
package org.jetbrains.kotlin.test
|
||||
|
||||
// Int Int
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IGNORE
|
||||
package org.jetbrains.kotlin.test
|
||||
|
||||
abstract class Base<T>(var x: T) {
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IGNORE
|
||||
interface Source<out T> {
|
||||
fun nextT(): T
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// FIR_IGNORE
|
||||
// collections/List<T> collections/List<String>
|
||||
// │ │
|
||||
fun <T> copyWhenGreater(list: List<T>, threshold: T): List<String>
|
||||
|
||||
Reference in New Issue
Block a user