rust/src/test/ui/error-codes/E0130.stderr

10 lines
310 B
Plaintext
Raw Normal View History

2018-02-07 21:35:35 -06:00
error[E0130]: patterns aren't allowed in foreign function declarations
--> $DIR/E0130.rs:12:12
|
2018-02-22 18:42:32 -06:00
LL | fn foo((a, b): (u32, u32));
2018-02-07 21:35:35 -06:00
| ^^^^^^ pattern not allowed in foreign function
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0130`.