mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03:00
9 lines
103 B
Rust
9 lines
103 B
Rust
trait Foo {}
|
|
|
|
struct Bar<T>(T);
|
|
|
|
impl<T> Foo for T where Bar<T>: Foo {} //~ ERROR E0275
|
|
|
|
fn main() {
|
|
}
|