]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/issues/issue-67945-2.min.stderr
Rollup merge of #87354 - Wind-River:2021_master, r=kennytm
[rust.git] / src / test / ui / const-generics / issues / issue-67945-2.min.stderr
1 error: generic parameters may not be used in const operations
2   --> $DIR/issue-67945-2.rs:11:16
3    |
4 LL |         let x: S = MaybeUninit::uninit();
5    |                ^ cannot perform const operation using `S`
6    |
7    = note: type parameters may not be used in const expressions
8    = help: use `#![feature(const_generics)]` and `#![feature(const_evaluatable_checked)]` to allow generic const expressions
9
10 error: generic parameters may not be used in const operations
11   --> $DIR/issue-67945-2.rs:14:45
12    |
13 LL |         let b = &*(&x as *const _ as *const S);
14    |                                             ^ cannot perform const operation using `S`
15    |
16    = note: type parameters may not be used in const expressions
17    = help: use `#![feature(const_generics)]` and `#![feature(const_evaluatable_checked)]` to allow generic const expressions
18
19 error[E0392]: parameter `S` is never used
20   --> $DIR/issue-67945-2.rs:8:12
21    |
22 LL | struct Bug<S> {
23    |            ^ unused parameter
24    |
25    = help: consider removing `S`, referring to it in a field, or using a marker such as `PhantomData`
26    = help: if you intended `S` to be a const parameter, use `const S: usize` instead
27
28 error: aborting due to 3 previous errors
29
30 For more information about this error, try `rustc --explain E0392`.