summaryrefslogtreecommitdiffstats
path: root/src/test/ui/static/refer-to-other-statics-by-value.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/static/refer-to-other-statics-by-value.rs')
-rw-r--r--src/test/ui/static/refer-to-other-statics-by-value.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/ui/static/refer-to-other-statics-by-value.rs b/src/test/ui/static/refer-to-other-statics-by-value.rs
deleted file mode 100644
index 90f1980f8..000000000
--- a/src/test/ui/static/refer-to-other-statics-by-value.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-// run-pass
-
-static A: usize = 42;
-static B: usize = A;
-
-fn main() {
- assert_eq!(B, 42);
-}