]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-50600.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-50600.rs
1 struct Foo (
2     fn([u8; |x: u8| {}]), //~ ERROR mismatched types
3 );
4
5 fn main() {}