]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-19244-1.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-19244-1.rs
1 const TUP: (usize,) = (42,);
2
3 fn main() {
4     let a: [isize; TUP.1];
5     //~^ ERROR no field `1` on type `(usize,)`
6 }