From 34dc166a9bc003bad36c28aeb29b625195d20a74 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sun, 21 Nov 2021 08:33:52 +0100 Subject: better errors for assoc types in where clauses --- tests/doctests.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'tests') diff --git a/tests/doctests.md b/tests/doctests.md index 3318dba..8fa8306 100644 --- a/tests/doctests.md +++ b/tests/doctests.md @@ -54,3 +54,41 @@ trait Trait { fn b(&self, a: A) -> Self::A; } ``` + +## Where clause must not contain associated types in complex predicates + +Works: + +```rust +#[dynamize::dynamize] +trait TraitWithCallback { + type A: Into; + + fn a(&self, a: G) where G: Fn(Self::A); +} +``` + +Fails: + +```rust compile_fail +#[dynamize::dynamize] +trait TraitWithCallback { + type A: Into; + + fn a(&self, a: G) where G: Into; +} +``` + +Fails: + +```rust compile_fail +struct MyType(A); +trait SomeTrait {} + +#[dynamize::dynamize] +trait TraitWithCallback { + type A: Into; + + fn a(&self, a: G) where MyType: SomeTrait; +} +``` -- cgit v1.2.3