blob: 95d7f85f10546240f81ae998a841f818953bfea9 [file] [log] [blame]
// 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() {
}