]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-1660.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-1660.rs
1 // run-pass
2 #![allow(non_upper_case_globals)]
3
4 // pretty-expanded FIXME #23616
5
6 pub fn main() {
7     static _x: isize = 1<<2;
8 }