mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
197 B
Rust
17 lines
197 B
Rust
// run-pass
|
|
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() {
|
|
}
|