summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-destructuring_assignment.rs
blob: e7801f0e8ec2b760116bb95daca1eb08e0f2ccb3 (plain)
1
2
3
4
fn main() {
    let (a, b) = (0, 1);
    (a, b) = (2, 3); //~ ERROR destructuring assignments are unstable
}