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/default-method-simple.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/default-method-simple.rs')
| -rw-r--r-- | src/test/run-pass/default-method-simple.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/run-pass/default-method-simple.rs b/src/test/run-pass/default-method-simple.rs index 4e17506d6ea..62b29d4e4eb 100644 --- a/src/test/run-pass/default-method-simple.rs +++ b/src/test/run-pass/default-method-simple.rs @@ -11,11 +11,11 @@ #[allow(default_methods)]; trait Foo { - fn f() { + fn f(&self) { io::println("Hello!"); self.g(); } - fn g(); + fn g(&self); } struct A { @@ -23,7 +23,7 @@ struct A { } impl Foo for A { - fn g() { + fn g(&self) { io::println("Goodbye!"); } } |
