mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
27 lines
422 B
Rust
27 lines
422 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
//@ pretty-expanded FIXME #23616
|
|
#![allow(non_snake_case)]
|
|
#![allow(unused_variables)]
|
|
|
|
struct T { f: extern "Rust" fn() }
|
|
struct S { f: extern "Rust" fn() }
|
|
|
|
fn fooS(t: S) {
|
|
}
|
|
|
|
fn fooT(t: T) {
|
|
}
|
|
|
|
fn bar() {
|
|
}
|
|
|
|
pub fn main() {
|
|
let x: extern "Rust" fn() = bar;
|
|
fooS(S {f: x});
|
|
fooS(S {f: bar});
|
|
|
|
let x: extern "Rust" fn() = bar;
|
|
fooT(T {f: x});
|
|
fooT(T {f: bar});
|
|
}
|