blob: 8905a882014f076866cf2be543f73849af12b0d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Test that we check supertrait bounds for WFedness.
#![feature(associated_type_defaults)]
#![feature(rustc_attrs)]
#![allow(dead_code)]
trait ExtraCopy<T:Copy> { }
trait SomeTrait<T>: ExtraCopy<T> { //~ ERROR E0277
}
fn main() { }
|