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

#![feature(associated_type_defaults)]

#![allow(dead_code)]

trait ExtraCopy<T:Copy> { }

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

impl<T,U> Foo<T,U> where T: ExtraCopy<U> //~ ERROR E0277
{
}


fn main() { }