]> git.lizzy.rs Git - rust.git/blob - src/test/ui/stability-attribute/stability-attribute-non-staged.rs
Auto merge of #85782 - badboy:build-ios-sim-target, r=Mark-Simulacrum
[rust.git] / src / test / ui / stability-attribute / stability-attribute-non-staged.rs
1 #[unstable()] //~ ERROR: stability attributes may not be used
2 #[stable()] //~ ERROR: stability attributes may not be used
3 #[rustc_deprecated()] //~ ERROR: stability attributes may not be used
4 fn main() { }