]> git.lizzy.rs Git - rust.git/blob - src/test/ui/attributes/used_with_multi_args.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / attributes / used_with_multi_args.rs
1 #![feature(used_with_arg)]
2
3 #[used(compiler, linker)] //~ expected `used`, `used(compiler)` or `used(linker)`
4 static mut USED_COMPILER_LINKER: [usize; 1] = [0];
5
6 fn main() {}