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/run-pass/trait-default-method-bound-subst3.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/run-pass/trait-default-method-bound-subst3.rs')
| -rw-r--r-- | src/test/run-pass/trait-default-method-bound-subst3.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/trait-default-method-bound-subst3.rs b/src/test/run-pass/trait-default-method-bound-subst3.rs index 5a9b4fbb9e6..3c1e6a59d03 100644 --- a/src/test/run-pass/trait-default-method-bound-subst3.rs +++ b/src/test/run-pass/trait-default-method-bound-subst3.rs @@ -11,7 +11,7 @@ #[allow(default_methods)]; trait A { - fn g<T>(x: T, y: T) -> (T, T) { (x, y) } + fn g<T>(&self, x: T, y: T) -> (T, T) { (x, y) } } impl A for int { } |
