add a comment
This commit is contained in:
parent
a7c7c8a4d7
commit
c84b7815b3
@ -370,6 +370,9 @@ impl<'a, 'gcx> CheckTypeWellFormedVisitor<'a, 'gcx> {
|
|||||||
// Here the default `Vec<[u32]>` is not WF because `[u32]: Sized` does not hold.
|
// Here the default `Vec<[u32]>` is not WF because `[u32]: Sized` does not hold.
|
||||||
for d in generics.types.iter().cloned().filter(is_our_default).map(|p| p.def_id) {
|
for d in generics.types.iter().cloned().filter(is_our_default).map(|p| p.def_id) {
|
||||||
let ty = fcx.tcx.type_of(d);
|
let ty = fcx.tcx.type_of(d);
|
||||||
|
// ignore dependent defaults -- that is, where the default of one type
|
||||||
|
// parameter includes another (e.g., <T, U = T>). In those cases, we can't
|
||||||
|
// be sure if it will error or not as user might always specify the other.
|
||||||
if !ty.needs_subst() {
|
if !ty.needs_subst() {
|
||||||
fcx.register_wf_obligation(ty, fcx.tcx.def_span(d), self.code.clone());
|
fcx.register_wf_obligation(ty, fcx.tcx.def_span(d), self.code.clone());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user