]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-43910.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-43910.rs
1 // run-pass
2 #![deny(unused_variables)]
3
4 fn main() {
5     #[allow(unused_variables)]
6     let x = 12;
7 }