rustc/tests/ui/deref.rs
2023-07-27 22:48:29 +08:00

8 lines
125 B
Rust

// run-pass
// pretty-expanded FIXME #23616
pub fn main() {
let x: Box<isize> = Box::new(10);
let _y: isize = *x;
}