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