mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 23:05:53 +00:00
14 lines
289 B
Rust
14 lines
289 B
Rust
// check-pass
|
|
|
|
#[cfg(FALSE)]
|
|
fn syntax() {
|
|
foo::<T = u8, T: Ord, String>();
|
|
//~^ WARN associated type bounds are unstable
|
|
//~| WARN unstable syntax
|
|
foo::<T = u8, 'a, T: Ord>();
|
|
//~^ WARN associated type bounds are unstable
|
|
//~| WARN unstable syntax
|
|
}
|
|
|
|
fn main() {}
|