Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 9 additions & 14 deletions src/librustc/middle/typeck/check/method.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,13 +300,8 @@ impl<'self> LookupContext<'self> {
ty_self(self_did) => {
// Call is of the form "self.foo()" and appears in one
// of a trait's default method implementations.
let substs = substs {
self_r: None,
self_ty: None,
tps: ~[]
};
self.push_inherent_candidates_from_self(
self_ty, self_did, &substs);
self_ty, self_did);
}
ty_enum(did, _) | ty_struct(did, _) => {
if self.check_traits == CheckTraitsAndInherentMethods {
Expand Down Expand Up @@ -462,12 +457,12 @@ impl<'self> LookupContext<'self> {

pub fn push_inherent_candidates_from_self(&self,
self_ty: ty::t,
did: def_id,
substs: &ty::substs) {
did: def_id) {
struct MethodInfo {
method_ty: @ty::Method,
trait_def_id: ast::def_id,
index: uint
index: uint,
trait_ref: @ty::TraitRef
}

let tcx = self.tcx();
Expand All @@ -479,7 +474,8 @@ impl<'self> LookupContext<'self> {
method_info = Some(MethodInfo {
method_ty: methods[i],
index: i,
trait_def_id: did
trait_def_id: did,
trait_ref: ty::lookup_trait_def(tcx, did).trait_ref
});
}
None => ()
Expand All @@ -494,7 +490,8 @@ impl<'self> LookupContext<'self> {
method_info = Some(MethodInfo {
method_ty: supertrait_methods[i],
index: i,
trait_def_id: trait_ref.def_id
trait_def_id: trait_ref.def_id,
trait_ref: *trait_ref
});
break;
}
Expand All @@ -505,16 +502,14 @@ impl<'self> LookupContext<'self> {
match method_info {
Some(ref info) => {
// We've found a method -- return it
let rcvr_substs = substs {self_ty: Some(self_ty),
..copy *substs };
let origin = if did == info.trait_def_id {
method_self(info.trait_def_id, info.index)
} else {
method_super(info.trait_def_id, info.index)
};
self.inherent_candidates.push(Candidate {
rcvr_ty: self_ty,
rcvr_substs: rcvr_substs,
rcvr_substs: copy info.trait_ref.substs,
method_ty: info.method_ty,
origin: origin
});
Expand Down
22 changes: 22 additions & 0 deletions src/test/run-pass/bug-7295.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// Copyright 2013 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.

#[allow(default_methods)];
pub trait Foo<T> {
pub fn func1<U>(&self, t: U);

pub fn func2<U>(&self, t: U) {
self.func1(t);
}
}

pub fn main() {

}