]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/issue-78655.stderr
Auto merge of #91403 - cjgillot:inherit-async, r=oli-obk
[rust.git] / src / test / ui / consts / issue-78655.stderr
1 error[E0381]: borrow of possibly-uninitialized variable: `x`
2   --> $DIR/issue-78655.rs:3:5
3    |
4 LL |     &x
5    |     ^^ use of possibly-uninitialized `x`
6
7 error: could not evaluate constant pattern
8   --> $DIR/issue-78655.rs:7:9
9    |
10 LL |     let FOO = FOO;
11    |         ^^^
12
13 error: could not evaluate constant pattern
14   --> $DIR/issue-78655.rs:7:9
15    |
16 LL |     let FOO = FOO;
17    |         ^^^
18
19 error: aborting due to 3 previous errors
20
21 For more information about this error, try `rustc --explain E0381`.