2017-12-10 19:47:55 +00:00
|
|
|
error[E0130]: patterns aren't allowed in foreign function declarations
|
|
|
|
--> $DIR/no-patterns-in-args.rs:12:11
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn f1(mut arg: u8); //~ ERROR patterns aren't allowed in foreign function declarations
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^ pattern not allowed in foreign function
|
|
|
|
|
|
|
|
error[E0130]: patterns aren't allowed in foreign function declarations
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/no-patterns-in-args.rs:13:11
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn f2(&arg: u8); //~ ERROR patterns aren't allowed in foreign function declarations
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^ pattern not allowed in foreign function
|
|
|
|
|
|
|
|
error[E0130]: patterns aren't allowed in foreign function declarations
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/no-patterns-in-args.rs:14:11
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn f3(arg @ _: u8); //~ ERROR patterns aren't allowed in foreign function declarations
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^ pattern not allowed in foreign function
|
|
|
|
|
|
|
|
error[E0561]: patterns aren't allowed in function pointer types
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/no-patterns-in-args.rs:20:14
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | type A1 = fn(mut arg: u8); //~ ERROR patterns aren't allowed in function pointer types
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error[E0561]: patterns aren't allowed in function pointer types
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/no-patterns-in-args.rs:21:14
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | type A2 = fn(&arg: u8); //~ ERROR patterns aren't allowed in function pointer types
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
2018-02-19 20:40:25 +00:00
|
|
|
You've got a few errors: E0130, E0561
|
|
|
|
If you want more information on an error, try using "rustc --explain E0130"
|