Files
rust/tests/ui/parser/constraints-before-generic-args-syntactic-pass.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
130 B
Rust
Raw Normal View History

//@ check-pass
2025-03-29 17:24:03 +00:00
#[cfg(false)]
fn syntax() {
foo::<T = u8, T: Ord, String>();
foo::<T = u8, 'a, T: Ord>();
}
fn main() {}