mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 11:44:28 +00:00
20 lines
283 B
Rust
20 lines
283 B
Rust
struct Bar<T>(T);
|
|
|
|
trait Baz {
|
|
fn hey();
|
|
}
|
|
|
|
impl Baz for u16 {
|
|
fn hey() {
|
|
let _: [u8; std::mem::size_of::<Self>()]; // ok
|
|
}
|
|
}
|
|
|
|
impl<T> Baz for Bar<T> {
|
|
fn hey() {
|
|
let _: [u8; std::mem::size_of::<Self>()]; //~ERROR generic `Self`
|
|
}
|
|
}
|
|
|
|
fn main() {}
|