2022-01-11 19:55:56 -06:00
|
|
|
warning: function cannot return without recursing
|
|
|
|
--> $DIR/recursive.rs:3:1
|
|
|
|
|
|
|
|
|
LL | const fn f<T>(x: T) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ cannot return without recursing
|
|
|
|
LL | f(x);
|
|
|
|
| ---- recursive call site
|
|
|
|
|
|
|
|
|
= help: a `loop` may express intention better if this is on purpose
|
2022-09-18 10:55:36 -05:00
|
|
|
= note: `#[warn(unconditional_recursion)]` on by default
|
2022-01-11 19:55:56 -06:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
2022-01-11 19:55:56 -06:00
|
|
|
--> $DIR/recursive.rs:4:5
|
|
|
|
|
|
2022-11-29 07:10:42 -06:00
|
|
|
LL | f(x);
|
|
|
|
| ^^^^ reached the configured maximum number of stack frames
|
|
|
|
|
|
|
|
|
note: inside `f::<i32>`
|
|
|
|
--> $DIR/recursive.rs:4:5
|
|
|
|
|
|
2022-01-11 19:55:56 -06:00
|
|
|
LL | f(x);
|
|
|
|
| ^^^^
|
2022-11-29 07:10:42 -06:00
|
|
|
note: [... 126 additional calls inside `f::<i32>` ...]
|
|
|
|
--> $DIR/recursive.rs:4:5
|
|
|
|
|
|
|
|
|
LL | f(x);
|
|
|
|
| ^^^^
|
|
|
|
note: inside `X`
|
|
|
|
--> $DIR/recursive.rs:8:15
|
|
|
|
|
|
2022-01-11 19:55:56 -06:00
|
|
|
LL | const X: () = f(1);
|
2022-11-29 07:10:42 -06:00
|
|
|
| ^^^^
|
2022-01-11 19:55:56 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error; 1 warning emitted
|
2022-01-11 19:55:56 -06:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|