]> git.lizzy.rs Git - rust.git/blob - tests/ui/augmented-assignments-feature-gate-cross.rs
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / 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 }