mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
234 B
Rust
13 lines
234 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));
|
|
}
|