// Check that we test WF conditions for fn arguments. Because the // current code is so goofy, this is only a warning for now. #![allow(dead_code)] #![allow(unused_variables)] trait Bar { } trait Foo { fn bar(&self) where A: Bar { //~^ ERROR E0277 // // Here, Eq ought to be implemented. } } fn main() { }