mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
301 B
Rust
13 lines
301 B
Rust
// run-pass
|
|
// aux-build:struct_destructuring_cross_crate.rs
|
|
|
|
|
|
extern crate struct_destructuring_cross_crate;
|
|
|
|
pub fn main() {
|
|
let x = struct_destructuring_cross_crate::S { x: 1, y: 2 };
|
|
let struct_destructuring_cross_crate::S { x: a, y: b } = x;
|
|
assert_eq!(a, 1);
|
|
assert_eq!(b, 2);
|
|
}
|