2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 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-16 21:44:34 +00:00
|
|
|
// xfail-fast
|
2012-08-16 01:34:28 +00:00
|
|
|
// aux-build:issue-3012-1.rs
|
2012-09-12 00:46:20 +00:00
|
|
|
extern mod socketlib;
|
2013-05-25 02:35:29 +00:00
|
|
|
|
2012-09-05 19:32:05 +00:00
|
|
|
use socketlib::socket;
|
2013-05-25 02:35:29 +00:00
|
|
|
use std::libc;
|
2012-08-16 01:34:28 +00:00
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2012-08-16 01:34:28 +00:00
|
|
|
let fd: libc::c_int = 1 as libc::c_int;
|
2013-08-17 15:37:42 +00:00
|
|
|
let _sock = @socket::socket_handle(fd);
|
2012-08-16 01:34:28 +00:00
|
|
|
}
|