rust/tests/ui/no-patterns-in-args.stderr

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

35 lines
1.1 KiB
Plaintext
Raw Normal View History

error[E0130]: patterns aren't allowed in foreign function declarations
2018-12-25 15:56:47 +00:00
--> $DIR/no-patterns-in-args.rs:2:11
|
2019-03-09 12:03:44 +00:00
LL | fn f1(mut arg: u8);
| ^^^^^^^ pattern not allowed in foreign function
error[E0130]: patterns aren't allowed in foreign function declarations
2018-12-25 15:56:47 +00:00
--> $DIR/no-patterns-in-args.rs:3:11
|
2019-03-09 12:03:44 +00:00
LL | fn f2(&arg: u8);
| ^^^^ pattern not allowed in foreign function
error[E0130]: patterns aren't allowed in foreign function declarations
2018-12-25 15:56:47 +00:00
--> $DIR/no-patterns-in-args.rs:4:11
|
2019-03-09 12:03:44 +00:00
LL | fn f3(arg @ _: u8);
| ^^^^^^^ pattern not allowed in foreign function
error[E0561]: patterns aren't allowed in function pointer types
2018-12-25 15:56:47 +00:00
--> $DIR/no-patterns-in-args.rs:10:14
|
2019-03-09 12:03:44 +00:00
LL | type A1 = fn(mut arg: u8);
| ^^^^^^^
error[E0561]: patterns aren't allowed in function pointer types
2018-12-25 15:56:47 +00:00
--> $DIR/no-patterns-in-args.rs:11:14
|
2019-03-09 12:03:44 +00:00
LL | type A2 = fn(&arg: u8);
| ^^^^
error: aborting due to 5 previous errors
2019-10-04 11:58:56 +00:00
Some errors have detailed explanations: E0130, E0561.
For more information about an error, try `rustc --explain E0130`.