mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
231 B
Rust
14 lines
231 B
Rust
// 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));
|
|
}
|