summary refs log tree commit diff
path: root/tests/ui/error-codes/E0275.rs
blob: 889d9d8be90396b32ba9649d15f05a8d538ee6b9 (plain)
1
2
3
4
5
6
7
8
9
//@ normalize-stderr-test: "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() {
}