]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-2311.rs
Rollup merge of #107114 - Erk-:add-absolute-note-to-path-join, r=m-ou-se
[rust.git] / tests / ui / issues / issue-2311.rs
1 // check-pass
2 #![allow(non_camel_case_types)]
3
4 // pretty-expanded FIXME #23616
5
6 trait clam<A> { fn get(self) -> A; }
7 trait foo<A> {
8    fn bar<B,C:clam<A>>(&self, c: C) -> B;
9 }
10
11 pub fn main() { }