help wantedhigh priority
仓库指标
- Star
- (21,417 star)
- PR 合并指标
- (平均合并 10天 19小时) (30 天内合并 69 个 PR)
描述
type Test(a) {
Test(a)
}
fn it(value: Test(a)) {
it2(value)
}
fn it2(value: Test(a)) -> Test(a) {
it(value)
}
Gives this error on the test2 call
Type mismatch
The type of this returned value doesn't match the return type
annotation of this function.
Expected type:
Test(a)
Found type:
Test(a)
Similar issue #1893