mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
374 B
Rust
20 lines
374 B
Rust
// 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)]
|
|
|
|
struct Bar<T:Eq+?Sized> { value: Box<T> }
|
|
|
|
trait Foo {
|
|
fn bar(&self, x: &Bar<Self>) {
|
|
//~^ ERROR E0277
|
|
//
|
|
// Here, Eq ought to be implemented.
|
|
}
|
|
}
|
|
|
|
|
|
fn main() { }
|