summaryrefslogtreecommitdiffstats
path: root/src/test/ui/wf/wf-inherent-impl-method-where-clause.rs
blob: eb50fc01085d7df719d2d69b0d659c2ac6328b40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Test that we check where-clauses on inherent impl methods.

#![feature(associated_type_defaults)]

#![allow(dead_code)]

trait ExtraCopy<T:Copy> { }

struct Foo<T,U>(T,U);

impl<T,U> Foo<T,U> {
    fn foo(self) where T: ExtraCopy<U> //~ ERROR E0277
    {}
}


fn main() { }