rust/src/test/ui/const-generics/min_const_generics/self-ty-in-const-2.stderr

15 lines
401 B
Plaintext
Raw Normal View History

2020-09-01 07:30:16 -05:00
error: generic `Self` types are currently not permitted in anonymous constants
--> $DIR/self-ty-in-const-2.rs:17:41
|
LL | let _: [u8; std::mem::size_of::<Self>()];
| ^^^^
|
note: not a concrete type
2020-09-08 04:37:27 -05:00
--> $DIR/self-ty-in-const-2.rs:15:17
2020-09-01 07:30:16 -05:00
|
2020-09-08 04:37:27 -05:00
LL | impl<T> Baz for Bar<T> {
| ^^^^^^
2020-09-01 07:30:16 -05:00
error: aborting due to previous error