rust/tests/ui/parser/macro/trait-object-macro-matcher.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
339 B
Rust
Raw Normal View History

2017-03-16 16:47:32 -05:00
// A single lifetime is not parsed as a type.
// `ty` matcher in particular doesn't accept a single lifetime
macro_rules! m {
($t: ty) => {
let _: $t;
};
2017-03-16 16:47:32 -05:00
}
fn main() {
m!('static);
//~^ ERROR lifetime in trait object type must be followed by `+`
//~| ERROR at least one trait is required for an object type
2017-03-16 16:47:32 -05:00
}