From bd6f84036426c43e08078cf11e4ee70b7714ba2f Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sat, 20 Nov 2021 19:47:43 +0100 Subject: also dynamize simple type param bounds in where clauses --- tests/tests.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests') diff --git a/tests/tests.rs b/tests/tests.rs index 448af64..3139185 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -146,6 +146,10 @@ trait TraitWithCallback { type A: Into; fn fun_with_callback(&self, a: F); + fn fun_with_callback0(&self, a: G) + where + G: Fn(Self::A); + fn fun_with_callback1)>(&self, a: X); fn fun_with_callback2, String) -> bool>(&self, a: Y); -- cgit v1.2.3