2020-07-30 13:43:44 -05:00
|
|
|
// Checks that lifetimes cannot be interspersed between consts and types.
|
|
|
|
|
|
|
|
struct Foo<const N: usize, 'a, T = u32>(&'a (), T);
|
2022-09-09 07:28:57 -05:00
|
|
|
//~^ ERROR lifetime parameters must be declared prior to type and const parameters
|
2020-07-30 13:43:44 -05:00
|
|
|
|
2020-07-30 15:53:32 -05:00
|
|
|
struct Bar<const N: usize, T = u32, 'a>(&'a (), T);
|
2022-09-09 07:28:57 -05:00
|
|
|
//~^ ERROR lifetime parameters must be declared prior to type and const parameters
|
2020-07-30 15:53:32 -05:00
|
|
|
|
2020-07-30 13:43:44 -05:00
|
|
|
fn main() {}
|