diff --git a/compiler/testData/diagnostics/testsWithJava8/targetedBuiltIns/unsupportedFeature.kt b/compiler/testData/diagnostics/testsWithJava8/targetedBuiltIns/unsupportedFeature.kt index ecd63c52388..b76a6a47bcb 100644 --- a/compiler/testData/diagnostics/testsWithJava8/targetedBuiltIns/unsupportedFeature.kt +++ b/compiler/testData/diagnostics/testsWithJava8/targetedBuiltIns/unsupportedFeature.kt @@ -21,7 +21,6 @@ fun foo(x: List, y: Throwable) { y.fillInStackTrace() checkType { _() } - // TODO: Relevant extensions has been removed from stdlib - // We should consider reverting their removal - y.printStackTrace() + // Falls back to extension in stdlib + y.printStackTrace() }