We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48e5199 commit e59756eCopy full SHA for e59756e
src/librustc/hir/lowering.rs
@@ -240,7 +240,9 @@ impl<'a> LoweringContext<'a> {
240
}))
241
}
242
TyKind::Never => hir::TyNever,
243
- TyKind::Tup(ref tys) => hir::TyTup(tys.iter().map(|ty| self.lower_ty(ty)).collect()),
+ TyKind::Tup(ref tys) => {
244
+ hir::TyTup(tys.iter().map(|ty| self.lower_ty(ty)).collect())
245
+ }
246
TyKind::Paren(ref ty) => {
247
return self.lower_ty(ty);
248
0 commit comments