mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 04:05:27 +00:00
9 lines
213 B
Rust
9 lines
213 B
Rust
//@ pp-exact
|
|
|
|
fn f<'a, 'b, T>(t: T) -> isize where T: 'a, 'a: 'b, T: Eq { 0 }
|
|
|
|
// This is legal syntax, sometimes generated by macros. `where T: $($bound+)*`
|
|
fn zero_bounds<'a, T>() where 'a:, T: {}
|
|
|
|
fn main() {}
|