Make unimplemented match variants explicit

This commit is contained in:
Casey Primozic 2020-10-06 23:56:31 -07:00
parent f40e86e141
commit 13bdadb515
No known key found for this signature in database
GPG key ID: 2A02222DA3425B99

View file

@ -399,7 +399,8 @@ impl ToChalk for TypeCtor {
// this should not be reached, since we don't represent TypeName::Error with TypeCtor
unreachable!()
}
_ => unimplemented!(), // FIXME
TypeName::Generator(_) => unimplemented!(), // FIXME
TypeName::GeneratorWitness(_) => unimplemented!(), // FIXME
}
}
}