mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
23 lines
637 B
Rust
23 lines
637 B
Rust
#![feature(negative_bounds)]
|
|
|
|
trait Trait {
|
|
type Assoc;
|
|
}
|
|
|
|
fn test<T: !Trait<Assoc = i32>>() {}
|
|
//~^ ERROR associated type constraints not allowed on negative bounds
|
|
|
|
fn test2<T>() where T: !Trait<Assoc = i32> {}
|
|
//~^ ERROR associated type constraints not allowed on negative bounds
|
|
|
|
fn test3<T: !Trait<Assoc: Send>>() {}
|
|
//~^ ERROR associated type constraints not allowed on negative bounds
|
|
|
|
fn test4<T>() where T: !Trait<Assoc: Send> {}
|
|
//~^ ERROR associated type constraints not allowed on negative bounds
|
|
|
|
fn test5<T>() where T: !Fn() -> i32 {}
|
|
//~^ ERROR parenthetical notation may not be used for negative bounds
|
|
|
|
fn main() {}
|