]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-7899.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-7899.rs
1 // run-pass
2 #![allow(unused_variables)]
3 // aux-build:issue-7899.rs
4
5 // pretty-expanded FIXME #23616
6
7 extern crate issue_7899 as testcrate;
8
9 fn main() {
10     let f = testcrate::V2(1.0f32, 2.0f32);
11 }