]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/future-incompat-test.rs
Rollup merge of #106816 - TimNN:rental-remap, r=oli-obj
[rust.git] / tests / ui / lint / future-incompat-test.rs
1 // compile-flags: -Zfuture-incompat-test
2 // check-pass
3
4 // The `-Zfuture-incompat-test flag causes any normal warning to be included
5 // in the future-incompatible report. The stderr output here should mention
6 // the future incompatible report (as extracted by compiletest).
7
8 fn main() {
9     let x = 1;
10 }