diff options
Diffstat (limited to 'src/test/debuginfo/method-on-struct.rs')
| -rw-r--r-- | src/test/debuginfo/method-on-struct.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/debuginfo/method-on-struct.rs b/src/test/debuginfo/method-on-struct.rs index f2db6e3af47..5ea89f15489 100644 --- a/src/test/debuginfo/method-on-struct.rs +++ b/src/test/debuginfo/method-on-struct.rs @@ -133,7 +133,7 @@ impl Struct { self.x + arg1 + arg2 } - fn self_owned(~self, arg1: int, arg2: int) -> int { + fn self_owned(self: Box<Struct>, arg1: int, arg2: int) -> int { zzz(); // #break self.x + arg1 + arg2 } |
