summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/recursive.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/recursive.rs')
-rw-r--r--src/test/ui/consts/recursive.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/ui/consts/recursive.rs b/src/test/ui/consts/recursive.rs
index 664940c52..5d736e31b 100644
--- a/src/test/ui/consts/recursive.rs
+++ b/src/test/ui/consts/recursive.rs
@@ -2,8 +2,7 @@
const fn f<T>(x: T) { //~ WARN function cannot return without recursing
f(x);
- //~^ ERROR any use of this value will cause an error
- //~| WARN this was previously accepted by the compiler
+ //~^ ERROR evaluation of constant value failed
}
const X: () = f(1);