]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-19129-2.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-19129-2.rs
1 // check-pass
2 #![allow(unused_variables)]
3 // pretty-expanded FIXME #23616
4
5 trait Trait<Input> {
6     type Output;
7
8     fn method(&self, i: Input) -> bool { false }
9 }
10
11 fn main() {}