mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
12 lines
221 B
Rust
12 lines
221 B
Rust
#[derive(Copy, Clone)]
|
|
struct Wrapper<T>(T);
|
|
|
|
fn foo(_: fn(i32), _: Wrapper<i32>) {}
|
|
|
|
fn f(_: u32) {}
|
|
|
|
fn main() {
|
|
let w = Wrapper::<isize>(1isize);
|
|
foo(f, w); //~ ERROR arguments to this function are incorrect
|
|
}
|