/src/test/auxiliary/issue-3012-1.rs

https://gitlab.com/pranith/rust · Rust · 33 lines · 18 code · 5 blank · 10 comment · 1 complexity · e94ea51e8beba23fb0b31f401422e9d9 MD5 · raw file

  1. // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
  2. // file at the top-level directory of this distribution and at
  3. // http://rust-lang.org/COPYRIGHT.
  4. //
  5. // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
  6. // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
  7. // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
  8. // option. This file may not be copied, modified, or distributed
  9. // except according to those terms.
  10. #![crate_name="socketlib"]
  11. #![crate_type = "lib"]
  12. #![feature(libc)]
  13. pub mod socket {
  14. extern crate libc;
  15. pub struct socket_handle {
  16. sockfd: libc::c_int,
  17. }
  18. impl Drop for socket_handle {
  19. fn drop(&mut self) {
  20. /* c::close(self.sockfd); */
  21. }
  22. }
  23. pub fn socket_handle(x: libc::c_int) -> socket_handle {
  24. socket_handle {
  25. sockfd: x
  26. }
  27. }
  28. }