rust/src/test/ui/issues/issue-2487-a.rs
2019-11-04 16:03:46 +01:00

32 lines
468 B
Rust

// build-pass
#![allow(dead_code)]
#![allow(non_camel_case_types)]
// pretty-expanded FIXME #23616
struct socket {
sock: isize,
}
impl Drop for socket {
fn drop(&mut self) {}
}
impl socket {
pub fn set_identity(&self) {
closure(|| setsockopt_bytes(self.sock.clone()))
}
}
fn socket() -> socket {
socket {
sock: 1
}
}
fn closure<F>(f: F) where F: FnOnce() { f() }
fn setsockopt_bytes(_sock: isize) { }
pub fn main() {}