rust/tests/ui/where-clauses/where-clause-placement-asso...

17 lines
383 B
Rust

//@ check-pass
//@ run-rustfix
#![allow(dead_code)]
#![feature(associated_type_defaults)]
trait Trait {
// Not fine, suggests moving.
type Assoc = () where u32: Copy;
//~^ WARNING where clause not allowed here
// Not fine, suggests moving `u32: Copy`
type Assoc2 = () where i32: Copy, u32: Copy;
//~^ WARNING where clause not allowed here
}
fn main() {}