]> git.lizzy.rs Git - rust.git/blob - tests/ui/augmented-assignments-feature-gate-cross.rs
Rollup merge of #106638 - RalfJung:realstd, r=thomcc
[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 }