Add FIR_IGNORE directive to test files that must be skipped

This commit is contained in:
Ivan Cilcic
2019-08-29 22:25:57 +03:00
committed by Mikhail Glukhikh
parent 350bd33769
commit 24cce75899
37 changed files with 51 additions and 2 deletions
@@ -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>