blob: 1d2427ff981d713c851548717f0ee6800ec297ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 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() { }
|