2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-01-28 23:59:34 +00:00
|
|
|
// Test that an `&mut self` method, when invoked on a place whose
|
|
|
|
// type is `&mut [u8]`, passes in a pointer to the place and not a
|
2014-12-06 19:55:38 +00:00
|
|
|
// temporary. Issue #19147.
|
|
|
|
|
|
|
|
use std::slice;
|
2016-01-15 18:07:52 +00:00
|
|
|
use std::cmp;
|
2015-04-10 18:12:43 +00:00
|
|
|
|
2014-12-06 19:55:38 +00:00
|
|
|
trait MyWriter {
|
2015-05-29 08:58:39 +00:00
|
|
|
fn my_write(&mut self, buf: &[u8]) -> Result<(), ()>;
|
2014-12-06 19:55:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> MyWriter for &'a mut [u8] {
|
2015-05-29 08:58:39 +00:00
|
|
|
fn my_write(&mut self, buf: &[u8]) -> Result<(), ()> {
|
2016-01-15 18:07:52 +00:00
|
|
|
let amt = cmp::min(self.len(), buf.len());
|
|
|
|
self[..amt].clone_from_slice(&buf[..amt]);
|
2014-12-06 19:55:38 +00:00
|
|
|
|
|
|
|
let write_len = buf.len();
|
|
|
|
unsafe {
|
2015-03-13 12:09:34 +00:00
|
|
|
*self = slice::from_raw_parts_mut(
|
2018-08-20 02:16:22 +00:00
|
|
|
self.as_mut_ptr().add(write_len),
|
2015-03-13 08:56:18 +00:00
|
|
|
self.len() - write_len
|
|
|
|
);
|
2014-12-06 19:55:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2015-03-03 08:42:26 +00:00
|
|
|
let mut buf = [0; 6];
|
2014-12-06 19:55:38 +00:00
|
|
|
|
|
|
|
{
|
2015-02-02 02:53:25 +00:00
|
|
|
let mut writer: &mut [_] = &mut buf;
|
2014-12-06 19:55:38 +00:00
|
|
|
writer.my_write(&[0, 1, 2]).unwrap();
|
|
|
|
writer.my_write(&[3, 4, 5]).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If `my_write` is not modifying `buf` in place, then we will
|
|
|
|
// wind up with `[3, 4, 5, 0, 0, 0]` because the first call to
|
|
|
|
// `my_write()` doesn't update the starting point for the write.
|
|
|
|
|
|
|
|
assert_eq!(buf, [0, 1, 2, 3, 4, 5]);
|
|
|
|
}
|