mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-11 20:58:54 +00:00
Make unimplemented match variants explicit
This commit is contained in:
parent
f40e86e141
commit
13bdadb515
1 changed files with 2 additions and 1 deletions
|
@ -399,7 +399,8 @@ impl ToChalk for TypeCtor {
|
||||||
// this should not be reached, since we don't represent TypeName::Error with TypeCtor
|
// this should not be reached, since we don't represent TypeName::Error with TypeCtor
|
||||||
unreachable!()
|
unreachable!()
|
||||||
}
|
}
|
||||||
_ => unimplemented!(), // FIXME
|
TypeName::Generator(_) => unimplemented!(), // FIXME
|
||||||
|
TypeName::GeneratorWitness(_) => unimplemented!(), // FIXME
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue