diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-08-17 08:37:42 -0700 |
|---|---|---|
| committer | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2013-08-17 08:42:35 -0700 |
| commit | ad5c67685332dc0e45d459b45749e76c93270988 (patch) | |
| tree | 6438b5458ada542b1b3d17271285f7f9c0402cb9 /src/test/run-pass/enum-export-inheritance.rs | |
| parent | e20d46056dc5891696faa8ebcccd2279b6c445d9 (diff) | |
| download | rust-ad5c67685332dc0e45d459b45749e76c93270988.tar.gz rust-ad5c67685332dc0e45d459b45749e76c93270988.zip | |
Fix warnings it tests
Diffstat (limited to 'src/test/run-pass/enum-export-inheritance.rs')
| -rw-r--r-- | src/test/run-pass/enum-export-inheritance.rs | 2 |
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; } |
