]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lint/lint-unknown-feature-default.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / lint / lint-unknown-feature-default.rs
1 // check-pass
2
3 // Tests the default for the unused_features lint
4
5 #![allow(stable_features)]
6 // FIXME(#44232) we should warn that this isn't used.
7 #![feature(rust1)]
8
9 fn main() {}