about summary refs log tree commit diff
path: root/src/test/run-pass/enum-export-inheritance.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/enum-export-inheritance.rs')
-rw-r--r--src/test/run-pass/enum-export-inheritance.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/enum-export-inheritance.rs b/src/test/run-pass/enum-export-inheritance.rs
index 49823155043..09834269d0b 100644
--- a/src/test/run-pass/enum-export-inheritance.rs
+++ b/src/test/run-pass/enum-export-inheritance.rs
@@ -17,5 +17,5 @@ mod a {
 }
 
 pub fn main() {
-    let x = a::Bar;
+    let _x = a::Bar;
 }