mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-30 17:31:10 +00:00
16 lines
228 B
Rust
16 lines
228 B
Rust
// Test that we check supertrait bounds for WFedness.
|
|
|
|
#![feature(associated_type_defaults)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
trait ExtraCopy<T:Copy> { }
|
|
|
|
trait SomeTrait<T,U>
|
|
where T: ExtraCopy<U> //~ ERROR E0277
|
|
{
|
|
}
|
|
|
|
|
|
fn main() { }
|