455d659e91
Co-Authored-By: Gabriel Smith <yodaldevoid@users.noreply.github.com>
14 lines
263 B
Rust
14 lines
263 B
Rust
mod foo {
|
|
pub struct X<'a, 'b, 'c, T> {
|
|
a: &'a str,
|
|
b: &'b str,
|
|
c: &'c str,
|
|
t: T,
|
|
}
|
|
}
|
|
|
|
fn bar<'a, 'b, 'c, T>(x: foo::X<'a, T, 'b, 'c>) {}
|
|
//~^ ERROR lifetime arguments must be declared prior to type arguments
|
|
|
|
fn main() {}
|