mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
7 lines
201 B
Rust
7 lines
201 B
Rust
struct Foo<T: ?Hash> {}
|
|
//~^ ERROR expected trait, found derive macro `Hash`
|
|
//~^^ ERROR parameter `T` is never used
|
|
//~^^^ WARN relaxing a default bound only does something for `?Sized`
|
|
|
|
fn main() {}
|