mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
35 lines
630 B
Rust
35 lines
630 B
Rust
// Tests that unsafe extern fn pointers do not implement any Fn traits.
|
|
|
|
use std::ops::{Fn, FnMut, FnOnce};
|
|
|
|
extern "C" fn square(x: &isize) -> isize {
|
|
(*x) * (*x)
|
|
}
|
|
|
|
fn call_it<F: Fn(&isize) -> isize>(_: &F, _: isize) -> isize {
|
|
0
|
|
}
|
|
fn call_it_mut<F: FnMut(&isize) -> isize>(_: &mut F, _: isize) -> isize {
|
|
0
|
|
}
|
|
fn call_it_once<F: FnOnce(&isize) -> isize>(_: F, _: isize) -> isize {
|
|
0
|
|
}
|
|
|
|
fn a() {
|
|
let x = call_it(&square, 22);
|
|
//~^ ERROR E0277
|
|
}
|
|
|
|
fn b() {
|
|
let y = call_it_mut(&mut square, 22);
|
|
//~^ ERROR E0277
|
|
}
|
|
|
|
fn c() {
|
|
let z = call_it_once(square, 22);
|
|
//~^ ERROR E0277
|
|
}
|
|
|
|
fn main() {}
|