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>;
|
2018-08-07 17:53:43 +00:00
|
|
|
//~^ ERROR wrong number of lifetime arguments: expected 1, found 2
|
2017-02-22 20:59:40 +00:00
|
|
|
//~| ERROR wrong number of type arguments: expected 1, found 0
|
2019-05-28 18:46:13 +00:00
|
|
|
let _: S<dyn 'static +, 'static>;
|
2019-02-05 16:00:19 +00:00
|
|
|
//~^ ERROR lifetime arguments must be declared prior to type arguments
|
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
|
|
|
}
|