diff options
| author | bors <bors@rust-lang.org> | 2014-07-17 06:21:21 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-07-17 06:21:21 +0000 |
| commit | 32cb44bfff3facbded5fd9cc74af3f02e81565a8 (patch) | |
| tree | 162e3b98fc57b10079f3ed04ff2144bafbfabae4 /src/test/debuginfo/method-on-tuple-struct.rs | |
| parent | 459ffc2adc74f5e8b64a76f5670edb419b9f65da (diff) | |
| parent | 00c70d1a803e62ccbe2545d5c5522f4dcd6953b9 (diff) | |
| download | rust-32cb44bfff3facbded5fd9cc74af3f02e81565a8.tar.gz rust-32cb44bfff3facbded5fd9cc74af3f02e81565a8.zip | |
auto merge of #14022 : pcwalton/rust/explicit-self, r=pnkfelix
r? @nikomatsakis
Diffstat (limited to 'src/test/debuginfo/method-on-tuple-struct.rs')
| -rw-r--r-- | src/test/debuginfo/method-on-tuple-struct.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/debuginfo/method-on-tuple-struct.rs b/src/test/debuginfo/method-on-tuple-struct.rs index 6f8a6182063..d4051e333c1 100644 --- a/src/test/debuginfo/method-on-tuple-struct.rs +++ b/src/test/debuginfo/method-on-tuple-struct.rs @@ -131,7 +131,7 @@ impl TupleStruct { arg1 + arg2 } - fn self_owned(~self, arg1: int, arg2: int) -> int { + fn self_owned(self: Box<TupleStruct>, arg1: int, arg2: int) -> int { zzz(); // #break arg1 + arg2 } |
