From 9960a9e74731f4abb0c36ed5bd81494b684266da Mon Sep 17 00:00:00 2001 From: Nicolas Stucki Date: Thu, 16 Jun 2022 10:36:28 +0200 Subject: [PATCH] Remove check file of tests/neg/i15311.scala The output is not deterministic as it depends on the stack frames at the moment of the stack overflow. The stack may overflow at different points depending on which methods the JIT compiler inlined and the resulting memory used for each frame. --- tests/neg/i15311.check | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 tests/neg/i15311.check diff --git a/tests/neg/i15311.check b/tests/neg/i15311.check deleted file mode 100644 index 2974f53fe526..000000000000 --- a/tests/neg/i15311.check +++ /dev/null @@ -1,32 +0,0 @@ --- Error: tests/neg/i15311.scala:16:4 ---------------------------------------------------------------------------------- -16 |def test = // error - |^ - |Recursion limit exceeded. - |Maybe there is an illegal cyclic reference? - |If that's not the case, you could also try to increase the stacksize using the -Xss JVM option. - |A recurring operation is (inner to outer): - | - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | ... - | - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined food.T - | check fully defined Template[food.T] -17 | eat(ham) -18 | eat(food.self)