We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd0ea19 commit a155a9bCopy full SHA for a155a9b
src/librustc_mir/borrow_check/diagnostics/region_errors.rs
@@ -66,7 +66,7 @@ enum Trace {
66
///
67
/// Usually we expect this to either be empty or contain a small number of items, so we can avoid
68
/// allocation most of the time.
69
-crate type RegionErrors<'tcx> = smallvec::SmallVec<[RegionErrorKind<'tcx>; 4]>;
+crate type RegionErrors<'tcx> = Vec<RegionErrorKind<'tcx>>;
70
71
#[derive(Clone, Debug)]
72
crate enum RegionErrorKind<'tcx> {
0 commit comments