请问大佬,我下面这个代码有个问题:
use std::marker::PhantomData;
trait T1 {
fn f();
}
trait T2<A: T1>
where
A: T1,
{
fn user(&self) -> A;
}
struct ImplT2<A> {
_marker: PhantomData<A>,
}
impl<A> T2<A> for ImplT2<A>
where
A: T1,
{
fn user(&self) -> A {
ImplT1 {}
}
}
struct ImplT1;
impl T1 for ImplT1 {
fn f() {
print!("")
}
}
cargo check 提供的信息:
error[E0308]: mismatched types
--> src/iam/chain/test.rs:23:9
|
18 | impl<A> T2<A> for ImplT2<A>
| - this type parameter
...
22 | fn user(&self) -> A {
| - expected `A` because of return type
23 | ImplT1 {}
| ^^^^^^^^^ expected type parameter `A`, found struct `ImplT1`
|
= note: expected type parameter `A`
found struct `ImplT1`
语法检查区并不认为 A 等同于 ImplT1 。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.