aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/comp/middle/typeck.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/comp/middle/typeck.rs b/src/comp/middle/typeck.rs
index 4a8f5974..911dbd05 100644
--- a/src/comp/middle/typeck.rs
+++ b/src/comp/middle/typeck.rs
@@ -2079,7 +2079,8 @@ fn check_expr(&@fn_ctxt fcx, &@ast::expr expr) -> @ast::expr {
auto e = ast::expr_path(pth, triv_ann(ast::ann_tag(old_ann),
tpt._1));
- write_type_only(fcx.ccx.node_types, ast::ann_tag(old_ann), tpt._1);
+ write_type_only(fcx.ccx.node_types,
+ ast::ann_tag(old_ann), tpt._1);
ret @fold::respan[ast::expr_](expr.span, e);
}