rust/src/test/run-pass/issue-3012-2.rs

23 lines
680 B
Rust
Raw Normal View History

// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2012-08-15 18:34:28 -07:00
// aux-build:issue-3012-1.rs
extern crate socketlib;
2014-02-26 12:58:41 -05:00
extern crate libc;
2012-09-05 12:32:05 -07:00
use socketlib::socket;
2012-08-15 18:34:28 -07:00
pub fn main() {
2012-08-15 18:34:28 -07:00
let fd: libc::c_int = 1 as libc::c_int;
2014-10-02 08:10:09 +03:00
let _sock = box socket::socket_handle(fd);
2012-08-15 18:34:28 -07:00
}