blob: 1d2427ff981d713c851548717f0ee6800ec297ce [file] [log] [blame]
// Check that we test WF conditions for fn where clauses in a trait definition.
#![allow(dead_code)]
#![allow(unused_variables)]
struct Bar<T:Eq+?Sized> { value: Box<T> }
trait Foo {
fn bar(&self) where Self: Sized, Bar<Self>: Copy;
//~^ ERROR E0277
//
// Here, Eq ought to be implemented.
}
fn main() { }