blob: 7d32c51f5699c874be64615cb2912ee2531e7dda [file] [log] [blame]
// run-pass
// aux-build:issue-3012-1.rs
// pretty-expanded FIXME #23616
extern crate socketlib;
use socketlib::socket;
pub fn main() {
let fd: u32 = 1 as u32;
let _sock: Box<_> = Box::new(socket::socket_handle(fd));
}