We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd9d5e5 commit 03330baCopy full SHA for 03330ba
src/test/run-pass/issue-2312.rs
@@ -0,0 +1,11 @@
1
+// Testing that the B's are resolved
2
+
3
+trait clam<A> { }
4
5
+enum foo = int;
6
7
+impl foo {
8
+ fn bar<B,C:clam<B>>(c: C) -> B { fail; }
9
+}
10
11
+fn main() { }
0 commit comments