mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 06:43:20 +03:00
10 lines
161 B
Rust
10 lines
161 B
Rust
//@ normalize-stderr: "long-type-\d+" -> "long-type-hash"
|
|
trait Foo {}
|
|
|
|
struct Bar<T>(T);
|
|
|
|
impl<T> Foo for T where Bar<T>: Foo {} //~ ERROR E0275
|
|
|
|
fn main() {
|
|
}
|