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>()];
|
2020-10-11 10:47:45 -05:00
|
|
|
| ^^^^ 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
|
2023-11-30 13:59:51 -06:00
|
|
|
= 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
|
|
|
|
|