diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-07-08 10:34:26 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-07-08 10:34:26 -0400 |
| commit | 80f9d935859a8ae783fdc85656fe498a59e8ebc2 (patch) | |
| tree | e4c8131319a2e28a47ef0e0d7daa2c2f5d44592f | |
| parent | 64ccb42bb87ea7f10784cb6fcfd185fc716fd3ff (diff) | |
| parent | 8d9f1bab756720fce7337d3d8cc5960b036a266e (diff) | |
| download | rust-80f9d935859a8ae783fdc85656fe498a59e8ebc2.tar.gz rust-80f9d935859a8ae783fdc85656fe498a59e8ebc2.zip | |
Rollup merge of #26889 - sanxiyn:fixme, r=alexcrichton
Fix #4951.
| -rw-r--r-- | src/librustc_resolve/lib.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/librustc_resolve/lib.rs b/src/librustc_resolve/lib.rs index 5d10b0d9a57..0ec3979ccfb 100644 --- a/src/librustc_resolve/lib.rs +++ b/src/librustc_resolve/lib.rs @@ -1844,11 +1844,6 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> { visit::walk_ty_param_bounds_helper(this, bounds); for trait_item in trait_items { - // Create a new rib for the trait_item-specific type - // parameters. - // - // FIXME #4951: Do we need a node ID here? - match trait_item.node { ast::ConstTraitItem(_, ref default) => { // Only impose the restrictions of |
