diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-03-12 19:32:14 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-03-13 20:07:10 -0700 |
| commit | 8fa66e8e07ca565119de195ceefb20cff50ae1ea (patch) | |
| tree | f9ae9910b40b04ae62daff56b8de1ae002765d2e /src/test/compile-fail/vtable-res-trait-param.rs | |
| parent | a410652bc953137c8d579f218c2e3e68a9ef8c1c (diff) | |
| download | rust-8fa66e8e07ca565119de195ceefb20cff50ae1ea.tar.gz rust-8fa66e8e07ca565119de195ceefb20cff50ae1ea.zip | |
librustc: Remove implicit self from the language, except for old-style drop blocks.
Diffstat (limited to 'src/test/compile-fail/vtable-res-trait-param.rs')
| -rw-r--r-- | src/test/compile-fail/vtable-res-trait-param.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/compile-fail/vtable-res-trait-param.rs b/src/test/compile-fail/vtable-res-trait-param.rs index 514448c9644..adcf2021274 100644 --- a/src/test/compile-fail/vtable-res-trait-param.rs +++ b/src/test/compile-fail/vtable-res-trait-param.rs @@ -9,15 +9,15 @@ // except according to those terms. trait TraitA { - fn method_a() -> int; + fn method_a(&self) -> int; } trait TraitB { - fn gimme_an_a<A:TraitA>(a: A) -> int; + fn gimme_an_a<A:TraitA>(&self, a: A) -> int; } impl TraitB for int { - fn gimme_an_a<A:TraitA>(a: A) -> int { + fn gimme_an_a<A:TraitA>(&self, a: A) -> int { a.method_a() + self } } |
