summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-extern-function.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-extern-function.rs')
-rw-r--r--src/test/ui/consts/const-extern-function.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/consts/const-extern-function.rs b/src/test/ui/consts/const-extern-function.rs
deleted file mode 100644
index 01f487a7d..000000000
--- a/src/test/ui/consts/const-extern-function.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// run-pass
-#![allow(non_upper_case_globals)]
-
-extern "C" 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);
-}