]> git.lizzy.rs Git - rust.git/blob - src/test/ui/augmented-assignments-feature-gate-cross.rs
Merge commit '0969bc6dde001e01e7e1f58c8ccd7750f8a49ae1' into sync_cg_clif-2021-03-29
[rust.git] / src / test / ui / augmented-assignments-feature-gate-cross.rs
1 // run-pass
2 // aux-build:augmented_assignments.rs
3
4 extern crate augmented_assignments;
5
6 use augmented_assignments::Int;
7
8 fn main() {
9     let mut x = Int(0);
10     x += 1;
11 }