Add regression test for #117058
This commit is contained in:
parent
8501f1c7ba
commit
712106b122
39
tests/ui/attributes/statement-attribute-validation.rs
Normal file
39
tests/ui/attributes/statement-attribute-validation.rs
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
// test for #117058 - check that attributes are validated on various kinds of statements.
|
||||||
|
|
||||||
|
struct A;
|
||||||
|
|
||||||
|
fn func() {}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
#[allow(two-words)]
|
||||||
|
//~^ ERROR expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
if true {
|
||||||
|
} else {
|
||||||
|
}
|
||||||
|
#[allow(two-words)]
|
||||||
|
//~^ ERROR expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
(1);
|
||||||
|
#[allow(two-words)]
|
||||||
|
//~^ ERROR expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
match 1 {
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
#[allow(two-words)]
|
||||||
|
//~^ ERROR expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
while false {}
|
||||||
|
#[allow(two-words)]
|
||||||
|
//~^ ERROR expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
{}
|
||||||
|
#[allow(two-words)]
|
||||||
|
//~^ ERROR expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
A {};
|
||||||
|
#[allow(two-words)]
|
||||||
|
//~^ ERROR expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
func();
|
||||||
|
#[allow(two-words)]
|
||||||
|
//~^ ERROR expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
A;
|
||||||
|
#[allow(two-words)]
|
||||||
|
//~^ ERROR expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
loop {}
|
||||||
|
}
|
56
tests/ui/attributes/statement-attribute-validation.stderr
Normal file
56
tests/ui/attributes/statement-attribute-validation.stderr
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
error: expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
--> $DIR/statement-attribute-validation.rs:8:16
|
||||||
|
|
|
||||||
|
LL | #[allow(two-words)]
|
||||||
|
| ^ expected one of `(`, `,`, `::`, or `=`
|
||||||
|
|
||||||
|
error: expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
--> $DIR/statement-attribute-validation.rs:13:16
|
||||||
|
|
|
||||||
|
LL | #[allow(two-words)]
|
||||||
|
| ^ expected one of `(`, `,`, `::`, or `=`
|
||||||
|
|
||||||
|
error: expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
--> $DIR/statement-attribute-validation.rs:16:16
|
||||||
|
|
|
||||||
|
LL | #[allow(two-words)]
|
||||||
|
| ^ expected one of `(`, `,`, `::`, or `=`
|
||||||
|
|
||||||
|
error: expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
--> $DIR/statement-attribute-validation.rs:21:16
|
||||||
|
|
|
||||||
|
LL | #[allow(two-words)]
|
||||||
|
| ^ expected one of `(`, `,`, `::`, or `=`
|
||||||
|
|
||||||
|
error: expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
--> $DIR/statement-attribute-validation.rs:24:16
|
||||||
|
|
|
||||||
|
LL | #[allow(two-words)]
|
||||||
|
| ^ expected one of `(`, `,`, `::`, or `=`
|
||||||
|
|
||||||
|
error: expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
--> $DIR/statement-attribute-validation.rs:27:16
|
||||||
|
|
|
||||||
|
LL | #[allow(two-words)]
|
||||||
|
| ^ expected one of `(`, `,`, `::`, or `=`
|
||||||
|
|
||||||
|
error: expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
--> $DIR/statement-attribute-validation.rs:30:16
|
||||||
|
|
|
||||||
|
LL | #[allow(two-words)]
|
||||||
|
| ^ expected one of `(`, `,`, `::`, or `=`
|
||||||
|
|
||||||
|
error: expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
--> $DIR/statement-attribute-validation.rs:33:16
|
||||||
|
|
|
||||||
|
LL | #[allow(two-words)]
|
||||||
|
| ^ expected one of `(`, `,`, `::`, or `=`
|
||||||
|
|
||||||
|
error: expected one of `(`, `,`, `::`, or `=`, found `-`
|
||||||
|
--> $DIR/statement-attribute-validation.rs:36:16
|
||||||
|
|
|
||||||
|
LL | #[allow(two-words)]
|
||||||
|
| ^ expected one of `(`, `,`, `::`, or `=`
|
||||||
|
|
||||||
|
error: aborting due to 9 previous errors
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user