summaryrefslogtreecommitdiffstats
path: root/src/test/ui/wf/wf-trait-associated-type-bound.rs
blob: 2f20e65e5021adcf7b9d3280ed18bd61b4c30b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Test that we check associated type bounds for WFedness.

#![feature(associated_type_defaults)]

#![allow(dead_code)]

trait ExtraCopy<T:Copy> { }

trait SomeTrait<T> {
    type Type1: ExtraCopy<T>; //~ ERROR E0277
}


fn main() { }