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