2017-02-22 20:59:40 +00:00
|
|
|
// A few contrived examples where lifetime should (or should not) be parsed as an object type.
|
|
|
|
// Lifetimes parsed as types are still rejected later by semantic checks.
|
|
|
|
|
|
|
|
struct S<'a, T>(&'a u8, T);
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// `'static` is a lifetime argument, `'static +` is a type argument
|
|
|
|
let _: S<'static, u8>;
|
2019-05-28 18:46:13 +00:00
|
|
|
let _: S<'static, dyn 'static +>;
|
2019-06-21 16:12:28 +00:00
|
|
|
//~^ at least one trait is required for an object type
|
2017-02-22 20:59:40 +00:00
|
|
|
let _: S<'static, 'static>;
|
2023-02-23 17:27:06 +00:00
|
|
|
//~^ ERROR struct takes 1 lifetime argument but 2 lifetime arguments were supplied
|
|
|
|
//~| ERROR struct takes 1 generic argument but 0 generic arguments were supplied
|
2019-05-28 18:46:13 +00:00
|
|
|
let _: S<dyn 'static +, 'static>;
|
2020-01-21 23:07:07 +00:00
|
|
|
//~^ ERROR type provided when a lifetime was expected
|
2019-06-21 16:12:28 +00:00
|
|
|
//~| ERROR at least one trait is required for an object type
|
2017-02-22 20:59:40 +00:00
|
|
|
}
|