Skip to content

Commit 8845592

Browse files
committed
Rollup merge of rust-lang#33572 - nagisa:assoc-const-types, r=eddyb
Support references to outer type params for assoc consts Fixes rust-lang#28809 r? @eddyb
2 parents 25ca82a + d3218fa commit 8845592

File tree

4 files changed

+26
-24
lines changed

4 files changed

+26
-24
lines changed

src/librustc/ty/mod.rs

+2-20
Original file line numberDiff line numberDiff line change
@@ -1260,7 +1260,7 @@ impl<'a, 'tcx> ParameterEnvironment<'tcx> {
12601260
match tcx.map.find(id) {
12611261
Some(ast_map::NodeImplItem(ref impl_item)) => {
12621262
match impl_item.node {
1263-
hir::ImplItemKind::Type(_) => {
1263+
hir::ImplItemKind::Type(_) | hir::ImplItemKind::Const(_, _) => {
12641264
// associated types don't have their own entry (for some reason),
12651265
// so for now just grab environment for the impl
12661266
let impl_id = tcx.map.get_parent(id);
@@ -1272,15 +1272,6 @@ impl<'a, 'tcx> ParameterEnvironment<'tcx> {
12721272
&predicates,
12731273
tcx.region_maps.item_extent(id))
12741274
}
1275-
hir::ImplItemKind::Const(_, _) => {
1276-
let def_id = tcx.map.local_def_id(id);
1277-
let scheme = tcx.lookup_item_type(def_id);
1278-
let predicates = tcx.lookup_predicates(def_id);
1279-
tcx.construct_parameter_environment(impl_item.span,
1280-
&scheme.generics,
1281-
&predicates,
1282-
tcx.region_maps.item_extent(id))
1283-
}
12841275
hir::ImplItemKind::Method(_, ref body) => {
12851276
let method_def_id = tcx.map.local_def_id(id);
12861277
match tcx.impl_or_trait_item(method_def_id) {
@@ -1303,7 +1294,7 @@ impl<'a, 'tcx> ParameterEnvironment<'tcx> {
13031294
}
13041295
Some(ast_map::NodeTraitItem(trait_item)) => {
13051296
match trait_item.node {
1306-
hir::TypeTraitItem(..) => {
1297+
hir::TypeTraitItem(..) | hir::ConstTraitItem(..) => {
13071298
// associated types don't have their own entry (for some reason),
13081299
// so for now just grab environment for the trait
13091300
let trait_id = tcx.map.get_parent(id);
@@ -1315,15 +1306,6 @@ impl<'a, 'tcx> ParameterEnvironment<'tcx> {
13151306
&predicates,
13161307
tcx.region_maps.item_extent(id))
13171308
}
1318-
hir::ConstTraitItem(..) => {
1319-
let def_id = tcx.map.local_def_id(id);
1320-
let scheme = tcx.lookup_item_type(def_id);
1321-
let predicates = tcx.lookup_predicates(def_id);
1322-
tcx.construct_parameter_environment(trait_item.span,
1323-
&scheme.generics,
1324-
&predicates,
1325-
tcx.region_maps.item_extent(id))
1326-
}
13271309
hir::MethodTraitItem(_, ref body) => {
13281310
// Use call-site for extent (unless this is a
13291311
// trait method with no default; then fallback

src/librustc_resolve/lib.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1949,9 +1949,7 @@ impl<'a> Resolver<'a> {
19491949
this.check_trait_item(impl_item.ident.name,
19501950
impl_item.span,
19511951
|n, s| ResolutionError::ConstNotMemberOfTrait(n, s));
1952-
this.with_constant_rib(|this| {
1953-
visit::walk_impl_item(this, impl_item);
1954-
});
1952+
visit::walk_impl_item(this, impl_item);
19551953
}
19561954
ImplItemKind::Method(ref sig, _) => {
19571955
// If this is a trait impl, ensure the method

src/librustc_typeck/check/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,8 @@ fn check_const<'a,'tcx>(ccx: &CrateCtxt<'a,'tcx>,
11531153
sp: Span,
11541154
e: &'tcx hir::Expr,
11551155
id: ast::NodeId) {
1156-
ccx.inherited(None).enter(|inh| {
1156+
let param_env = ParameterEnvironment::for_item(ccx.tcx, id);
1157+
ccx.inherited(Some(param_env)).enter(|inh| {
11571158
let rty = ccx.tcx.node_id_to_type(id);
11581159
let fcx = FnCtxt::new(&inh, ty::FnConverging(rty), e.id);
11591160
let declty = fcx.tcx.lookup_item_type(ccx.tcx.map.local_def_id(id)).ty;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
#![feature(associated_consts)]
11+
12+
trait Lattice {
13+
const BOTTOM: Self;
14+
}
15+
16+
// FIXME(#33573): this should work without the 'static lifetime bound.
17+
impl<T: 'static> Lattice for Option<T> {
18+
const BOTTOM: Option<T> = None;
19+
}
20+
21+
fn main(){}

0 commit comments

Comments
 (0)