From d5bb9c038a98282c3b6421c24a196a36e7720634 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sat, 20 Nov 2021 19:31:35 +0100 Subject: test that same-named generics need same bounds --- tests/doctests.md | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/tests/doctests.md b/tests/doctests.md index ef557fe..3318dba 100644 --- a/tests/doctests.md +++ b/tests/doctests.md @@ -1,4 +1,4 @@ -Tests that the object-safety assertion via `impl dyn` is working: +## If the dynamized trait isn't object safe you get a compile error ```rust compile_fail trait ObjectUnsafe: Sized {} @@ -17,3 +17,40 @@ trait Trait { fn f(&self) -> Self::A; } ``` + +## Same-named method generics must have same trait bounds + +Works: + +```rust +#[dynamize::dynamize] +trait Trait { + type A: std::error::Error; + + fn a(&self, a: A) -> Self::A; + fn b(&self, a: A) -> Self::A; +} +``` + +```rust +#[dynamize::dynamize] +trait Trait { + type A: std::error::Error; + + fn a(&self, a: A) -> Self::A; + fn b(&self, a: B) -> Self::A; +} +``` + + +Fails: + +```rust compile_fail +#[dynamize::dynamize] +trait Trait { + type A: std::error::Error; + + fn a(&self, a: A) -> Self::A; + fn b(&self, a: A) -> Self::A; +} +``` -- cgit v1.2.3