From f4d5070a7b2004c7b8676b931286f16a3460b4f2 Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Tue, 30 Jun 2020 17:54:32 +0300 Subject: [PATCH] [FIR-TEST] Mute BB test due to KT-39659 --- .../testData/codegen/box/elvis/kt6694ExactAnnotationForElvis.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/testData/codegen/box/elvis/kt6694ExactAnnotationForElvis.kt b/compiler/testData/codegen/box/elvis/kt6694ExactAnnotationForElvis.kt index af26c6e87f2..5143289515e 100644 --- a/compiler/testData/codegen/box/elvis/kt6694ExactAnnotationForElvis.kt +++ b/compiler/testData/codegen/box/elvis/kt6694ExactAnnotationForElvis.kt @@ -1,3 +1,5 @@ +// IGNORE_BACKEND_FIR: JVM_IR + interface PsiElement { fun findChildByType(i: Int): T? = if (i == 42) JetOperationReferenceExpression() as T else throw Exception()