summaryrefslogtreecommitdiffstats
path: root/src/test/ui/structs-enums/tag-align-shape.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/structs-enums/tag-align-shape.rs')
-rw-r--r--src/test/ui/structs-enums/tag-align-shape.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/structs-enums/tag-align-shape.rs b/src/test/ui/structs-enums/tag-align-shape.rs
deleted file mode 100644
index ce5995823..000000000
--- a/src/test/ui/structs-enums/tag-align-shape.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// run-pass
-#![allow(non_camel_case_types)]
-#![allow(dead_code)]
-
-#[derive(Debug)]
-enum a_tag {
- a_tag_var(u64)
-}
-
-#[derive(Debug)]
-struct t_rec {
- c8: u8,
- t: a_tag
-}
-
-pub fn main() {
- let x = t_rec {c8: 22, t: a_tag::a_tag_var(44)};
- let y = format!("{:?}", x);
- println!("y = {:?}", y);
- assert_eq!(y, "t_rec { c8: 22, t: a_tag_var(44) }".to_string());
-}