diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-01-27 22:24:02 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-01-27 22:24:02 +0530 |
| commit | 51ff9e82ec4ffe4d80765707e7348f34cecdc250 (patch) | |
| tree | a71aba9870dda909a76530b8765da538c6c2907b /src/test/debuginfo/method-on-struct.rs | |
| parent | 8418725b0daf6defc98137695e4fcc660f3cdb8f (diff) | |
| parent | bff462302b3e0a8f68c14cad2806c7ff5005364e (diff) | |
| download | rust-51ff9e82ec4ffe4d80765707e7348f34cecdc250.tar.gz rust-51ff9e82ec4ffe4d80765707e7348f34cecdc250.zip | |
Rollup merge of #21602 - japaric:derive-copy, r=alexcrichton
Diffstat (limited to 'src/test/debuginfo/method-on-struct.rs')
| -rw-r--r-- | src/test/debuginfo/method-on-struct.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/debuginfo/method-on-struct.rs b/src/test/debuginfo/method-on-struct.rs index d88a32b8475..56f79da709e 100644 --- a/src/test/debuginfo/method-on-struct.rs +++ b/src/test/debuginfo/method-on-struct.rs @@ -116,6 +116,7 @@ #![feature(box_syntax)] #![omit_gdb_pretty_printer_section] +#[derive(Copy)] struct Struct { x: int } @@ -151,5 +152,3 @@ fn main() { fn zzz() {()} -impl Copy for Struct {} - |
