rust/tests/ui/generics/issue-80512-param-reordering-with-defaults.rs

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

5 lines
136 B
Rust
Raw Normal View History

#![crate_type = "lib"]
struct S<T = (), 'a>(&'a T);
2022-09-09 07:28:57 -05:00
//~^ ERROR lifetime parameters must be declared prior to type and const parameters