2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2018-01-29 01:59:34 +02: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 11:55:38 -08:00
|
|
|
// temporary. Issue #19147.
|
|
|
|
|
|
|
|
use std::slice;
|
2016-01-15 10:07:52 -08:00
|
|
|
use std::cmp;
|
2015-04-10 11:12:43 -07:00
|
|
|
|
2014-12-06 11:55:38 -08:00
|
|
|
trait MyWriter {
|
2015-05-29 10:58:39 +02:00
|
|
|
fn my_write(&mut self, buf: &[u8]) -> Result<(), ()>;
|
2014-12-06 11:55:38 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> MyWriter for &'a mut [u8] {
|
2015-05-29 10:58:39 +02:00
|
|
|
fn my_write(&mut self, buf: &[u8]) -> Result<(), ()> {
|
2016-01-15 10:07:52 -08:00
|
|
|
let amt = cmp::min(self.len(), buf.len());
|
|
|
|
self[..amt].clone_from_slice(&buf[..amt]);
|
2014-12-06 11:55:38 -08:00
|
|
|
|
|
|
|
let write_len = buf.len();
|
|
|
|
unsafe {
|
2015-03-13 13:09:34 +01:00
|
|
|
*self = slice::from_raw_parts_mut(
|
2018-08-19 22:16:22 -04:00
|
|
|
self.as_mut_ptr().add(write_len),
|
2015-03-13 09:56:18 +01:00
|
|
|
self.len() - write_len
|
|
|
|
);
|
2014-12-06 11:55:38 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2015-03-03 10:42:26 +02:00
|
|
|
let mut buf = [0; 6];
|
2014-12-06 11:55:38 -08:00
|
|
|
|
|
|
|
{
|
2015-02-01 21:53:25 -05:00
|
|
|
let mut writer: &mut [_] = &mut buf;
|
2014-12-06 11:55:38 -08: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]);
|
|
|
|
}
|