mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 08:24:31 +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);
|
|
}
|