summary refs log tree commit diff
path: root/src/test/ui/consts/const-extern-function.rs
blob: cfcf99b867a0119ee57669fbf71d1d1a3da5eb72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-pass
#![allow(non_upper_case_globals)]

extern fn foopy() {}

static f: extern "C" fn() = foopy;
static s: S = S { f: foopy };

struct S {
    f: extern "C" fn()
}

pub fn main() {
    assert!(foopy as extern "C" fn() == f);
    assert!(f == s.f);
}