summaryrefslogtreecommitdiffstats
path: root/tests/ui-fulldeps/extern-mod-syntax.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui-fulldeps/extern-mod-syntax.rs')
-rw-r--r--tests/ui-fulldeps/extern-mod-syntax.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/ui-fulldeps/extern-mod-syntax.rs b/tests/ui-fulldeps/extern-mod-syntax.rs
deleted file mode 100644
index 230194c53..000000000
--- a/tests/ui-fulldeps/extern-mod-syntax.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// run-pass
-
-#![allow(unused_imports)]
-#![feature(rustc_private)]
-
-extern crate libc;
-use libc::c_void;
-
-pub fn main() {
- println!("Hello world!");
-}