blob: a31517218b448b3da7a328522440a5ee7c7e44a0 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0130]: patterns aren't allowed in foreign function declarations
--> $DIR/E0130.rs:2:12
|
LL | fn foo((a, b): (u32, u32));
| ^^^^^^ pattern not allowed in foreign function
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0130`.
|