rust/tests/ui/const-generics/min_const_generics/self-ty-in-const-1.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
798 B
Plaintext
Raw Normal View History

2020-10-12 16:27:59 -05:00
error: generic parameters may not be used in const operations
2020-11-17 04:44:21 -06:00
--> $DIR/self-ty-in-const-1.rs:2:41
2020-09-01 07:30:16 -05:00
|
LL | fn t1() -> [u8; std::mem::size_of::<Self>()];
| ^^^^ cannot perform const operation using `Self`
2020-09-01 07:30:16 -05:00
|
2020-10-12 16:27:59 -05:00
= note: type parameters may not be used in const expressions
= help: add `#![feature(generic_const_exprs)]` to allow generic const expressions
2020-09-01 07:30:16 -05:00
error: generic `Self` types are currently not permitted in anonymous constants
2020-11-17 04:44:21 -06:00
--> $DIR/self-ty-in-const-1.rs:12:41
2020-09-01 07:30:16 -05:00
|
LL | fn t3() -> [u8; std::mem::size_of::<Self>()] {}
| ^^^^
|
note: not a concrete type
2020-11-17 04:44:21 -06:00
--> $DIR/self-ty-in-const-1.rs:11:9
2020-09-01 07:30:16 -05:00
|
2020-09-08 04:37:27 -05:00
LL | impl<T> Bar<T> {
| ^^^^^^
2020-09-01 07:30:16 -05:00
error: aborting due to 2 previous errors