rust/tests/ui/parser/unsized.rs

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

8 lines
167 B
Rust
Raw Normal View History

// Test syntax checks for `type` keyword.
struct S1 for type;
//~^ ERROR expected `where`, `{`, `(`, or `;` after struct name, found keyword `for`
pub fn main() {
}