]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-3668-2.stderr
Rollup merge of #91804 - woppopo:const_clone, r=oli-obk
[rust.git] / src / test / ui / issues / issue-3668-2.stderr
1 error[E0435]: attempt to use a non-constant value in a constant
2   --> $DIR/issue-3668-2.rs:4:27
3    |
4 LL |     static child: isize = x + 1;
5    |     ------------          ^ non-constant value
6    |     |
7    |     help: consider using `let` instead of `static`: `let child`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0435`.