Add a (currently unused) "transformed self type" pointer into ty::method

This commit is contained in:
Niko Matsakis 2013-03-29 16:02:55 -04:00
parent 0a0525e366
commit 3333b0f117
7 changed files with 144 additions and 31 deletions

View file

@ -15,7 +15,7 @@ struct Foo {
}
pub impl Foo {
fn foo(&'a self) {}
fn foo<'a>(&'a self) {}
}
pub fn main() {}