mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
13 lines
237 B
Rust
13 lines
237 B
Rust
// 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() { }
|