Skip to content

Commit c8bad36

Browse files
committed
Change a match check to match
1 parent 8b79bed commit c8bad36

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/rustc/middle/typeck/collect.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ fn ensure_trait_methods(ccx: @crate_ctxt, id: ast::node_id) {
197197

198198
let tcx = ccx.tcx;
199199
let rp = tcx.region_paramd_items.contains_key(id);
200-
match check tcx.items.get(id) {
200+
match tcx.items.get(id) {
201201
ast_map::node_item(@{node: ast::item_trait(params, _, ms), _}, _) => {
202202
store_methods::<ast::trait_method>(ccx, id, ms, |m| {
203203
let trait_bounds = ty_param_bounds(ccx, params);
@@ -218,6 +218,7 @@ fn ensure_trait_methods(ccx: @crate_ctxt, id: ast::node_id) {
218218
ty_of_method(ccx, m, rp)
219219
});
220220
}
221+
_ => { /* Ignore things that aren't traits or classes */ }
221222
}
222223
}
223224

0 commit comments

Comments
 (0)