Skip to content

Commit

Permalink
object_safety: check whether a supertrait contains Self even without …
Browse files Browse the repository at this point in the history
…being it

This is a [breaking-change]:lang, but the broken code does not make
much sense.

Fixes #26056
  • Loading branch information
arielb1 committed Oct 23, 2015
1 parent 7ee4e9e commit 5d6d26c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 10 deletions.
13 changes: 3 additions & 10 deletions src/librustc/middle/traits/object_safety.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use super::elaborate_predicates;
use middle::def_id::DefId;
use middle::subst::{self, SelfSpace, TypeSpace};
use middle::traits;
use middle::ty::{self, ToPolyTraitRef, Ty};
use middle::ty::{self, HasTypeFlags, ToPolyTraitRef, Ty};
use std::rc::Rc;
use syntax::ast;

Expand Down Expand Up @@ -158,7 +158,7 @@ pub fn supertraits_reference_self<'tcx>(tcx: &ty::ctxt<'tcx>,
data.0.trait_ref.substs.types.get_slice(TypeSpace)
.iter()
.cloned()
.any(is_self)
.any(|t| t.has_self_ty())
}
ty::Predicate::Projection(..) |
ty::Predicate::WellFormed(..) |
Expand Down Expand Up @@ -198,7 +198,7 @@ fn generics_require_sized_self<'tcx>(tcx: &ty::ctxt<'tcx>,
.any(|predicate| {
match predicate {
ty::Predicate::Trait(ref trait_pred) if trait_pred.def_id() == sized_def_id => {
is_self(trait_pred.0.self_ty())
trait_pred.0.self_ty().is_self()
}
ty::Predicate::Projection(..) |
ty::Predicate::Trait(..) |
Expand Down Expand Up @@ -376,10 +376,3 @@ fn contains_illegal_self_type_reference<'tcx>(tcx: &ty::ctxt<'tcx>,

error
}

fn is_self<'tcx>(ty: Ty<'tcx>) -> bool {
match ty.sty {
ty::TyParam(ref data) => data.space == subst::SelfSpace,
_ => false,
}
}
33 changes: 33 additions & 0 deletions src/test/compile-fail/issue-26056.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

trait MapLookup<Q> {
type MapValue;
}

impl<K> MapLookup<K> for K {
type MapValue = K;
}

trait Map: MapLookup<<Self as Map>::Key> {
type Key;
}

impl<K> Map for K {
type Key = K;
}


fn main() {
let _ = &()
as &Map<Key=u32,MapValue=u32>;
//~^ ERROR the trait `Map` cannot be made into an object
//~| NOTE the trait cannot use `Self` as a type parameter
}

0 comments on commit 5d6d26c

Please sign in to comment.