1error: generic `Self` types are currently not permitted in anonymous constants
2  --> $DIR/self-ty-in-const-2.rs:15:41
3   |
4LL |         let _: [u8; std::mem::size_of::<Self>()];
5   |                                         ^^^^
6   |
7note: not a concrete type
8  --> $DIR/self-ty-in-const-2.rs:13:17
9   |
10LL | impl<T> Baz for Bar<T> {
11   |                 ^^^^^^
12
13error: aborting due to previous error
14
15