2017-12-10 19:47:55 +00:00
|
|
|
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
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn f1(mut arg: u8);
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^ 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
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn f2(&arg: u8);
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^ 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
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn f3(arg @ _: u8);
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^ 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
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | type A1 = fn(mut arg: u8);
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
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
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | type A2 = fn(&arg: u8);
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
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`.
|