diff --git a/compiler/testData/repl/evaluationErrors.repl b/compiler/testData/repl/evaluationErrors.repl index 3fd82ce1620..ab79a2237fc 100644 --- a/compiler/testData/repl/evaluationErrors.repl +++ b/compiler/testData/repl/evaluationErrors.repl @@ -3,7 +3,7 @@ java.lang.Exception: hi there >>> fun foo() = 2 >>> foo() 2 ->>> fun bar() = throw AssertionError() +>>> fun bar(): Nothing = throw AssertionError() >>> bar() java.lang.AssertionError at Line4.bar(Unknown Source)