summaryrefslogtreecommitdiffstats
path: root/src/test/ui/log-knows-the-names-of-variants.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/log-knows-the-names-of-variants.rs')
-rw-r--r--src/test/ui/log-knows-the-names-of-variants.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/log-knows-the-names-of-variants.rs b/src/test/ui/log-knows-the-names-of-variants.rs
deleted file mode 100644
index cf2876b6e..000000000
--- a/src/test/ui/log-knows-the-names-of-variants.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// run-pass
-
-#![allow(non_camel_case_types)]
-#![allow(dead_code)]
-#[derive(Debug)]
-enum foo {
- a(usize),
- b(String),
- c,
-}
-
-#[derive(Debug)]
-enum bar {
- d, e, f
-}
-
-pub fn main() {
- assert_eq!("a(22)".to_string(), format!("{:?}", foo::a(22)));
- assert_eq!("c".to_string(), format!("{:?}", foo::c));
- assert_eq!("d".to_string(), format!("{:?}", bar::d));
-}