summaryrefslogtreecommitdiffstats
path: root/src/test/run-make-fulldeps/min-global-align/min_global_align.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make-fulldeps/min-global-align/min_global_align.rs')
-rw-r--r--src/test/run-make-fulldeps/min-global-align/min_global_align.rs32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/test/run-make-fulldeps/min-global-align/min_global_align.rs b/src/test/run-make-fulldeps/min-global-align/min_global_align.rs
deleted file mode 100644
index 135792e93..000000000
--- a/src/test/run-make-fulldeps/min-global-align/min_global_align.rs
+++ /dev/null
@@ -1,32 +0,0 @@
-#![feature(no_core, lang_items)]
-#![crate_type = "rlib"]
-#![no_core]
-
-pub static STATIC_BOOL: bool = true;
-
-pub static mut STATIC_MUT_BOOL: bool = true;
-
-const CONST_BOOL: bool = true;
-pub static CONST_BOOL_REF: &'static bool = &CONST_BOOL;
-
-#[lang = "sized"]
-trait Sized {}
-
-#[lang = "copy"]
-trait Copy {}
-impl Copy for bool {}
-impl Copy for &bool {}
-
-#[lang = "freeze"]
-trait Freeze {}
-
-// No `UnsafeCell`, so everything is `Freeze`.
-impl<T: ?Sized> Freeze for T {}
-
-#[lang = "sync"]
-trait Sync {}
-impl Sync for bool {}
-impl Sync for &'static bool {}
-
-#[lang = "drop_in_place"]
-pub unsafe fn drop_in_place<T: ?Sized>(_: *mut T) {}