rust/tests/ui/wf/wf-trait-associated-type-bo...

15 lines
235 B
Rust

// 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() { }