2017-02-22 23:59:40 +03: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 14:46:13 -04:00
|
|
|
let _: S<'static, dyn 'static +>;
|
2019-06-22 00:12:28 +08:00
|
|
|
//~^ at least one trait is required for an object type
|
2017-02-22 23:59:40 +03:00
|
|
|
let _: S<'static, 'static>;
|
2023-02-23 10:27:06 -07: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 14:46:13 -04:00
|
|
|
let _: S<dyn 'static +, 'static>;
|
2020-01-21 23:07:07 +00:00
|
|
|
//~^ ERROR type provided when a lifetime was expected
|
2019-06-22 00:12:28 +08:00
|
|
|
//~| ERROR at least one trait is required for an object type
|
2017-02-22 23:59:40 +03:00
|
|
|
}
|