diff options
| author | bors <bors@rust-lang.org> | 2015-05-25 15:54:39 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-05-25 15:54:39 +0000 |
| commit | 45001c0ef8a9a09f93e65d2d4d8d64364bb7d9ba (patch) | |
| tree | 5eb59dab591867e8fd869e305e4faadc2b406410 /src/test | |
| parent | 38c943f7efc4ac76efc1611a702e903ff8ad67b2 (diff) | |
| parent | efd3e75503074e93958a03fa1ee2b9a5abcad7e4 (diff) | |
| download | rust-45001c0ef8a9a09f93e65d2d4d8d64364bb7d9ba.tar.gz rust-45001c0ef8a9a09f93e65d2d4d8d64364bb7d9ba.zip | |
Auto merge of #25773 - dotdash:deref_dst, r=eddyb
Fat pointers aren't immediate, so in a datum, they're not actually ByValue but ByRef. Fixes #24589
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-pass/issue-24589.rs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/run-pass/issue-24589.rs b/src/test/run-pass/issue-24589.rs new file mode 100644 index 00000000000..2fa8c8e98c0 --- /dev/null +++ b/src/test/run-pass/issue-24589.rs @@ -0,0 +1,26 @@ +// Copyright 2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +pub struct _X([u8]); + +impl std::ops::Deref for _X { + type Target = [u8]; + + fn deref(&self) -> &[u8] { + &self.0 + } +} + +pub fn _g(x: &_X) -> &[u8] { + x +} + +fn main() { +} |
