about summary refs log tree commit diff
path: root/src/test/debuginfo/tuple-in-struct.rs
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2014-10-27 15:37:07 -0700
committerAaron Turon <aturon@mozilla.com>2014-10-28 08:54:21 -0700
commite0ad0fcb95f0bd6e69e9032c23b66515a590dfe5 (patch)
tree8d1fcc64b2219b49b255f92f1d2c4087200d8930 /src/test/debuginfo/tuple-in-struct.rs
parent58dc0a05abb98ae2db65ca20e70f3bab51f8bf92 (diff)
downloadrust-e0ad0fcb95f0bd6e69e9032c23b66515a590dfe5.tar.gz
rust-e0ad0fcb95f0bd6e69e9032c23b66515a590dfe5.zip
Update code with new lint names
Diffstat (limited to 'src/test/debuginfo/tuple-in-struct.rs')
-rw-r--r--src/test/debuginfo/tuple-in-struct.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/debuginfo/tuple-in-struct.rs b/src/test/debuginfo/tuple-in-struct.rs
index 9ac66f8300f..5a47b164648 100644
--- a/src/test/debuginfo/tuple-in-struct.rs
+++ b/src/test/debuginfo/tuple-in-struct.rs
@@ -42,7 +42,7 @@
 // gdb-command:print mixed_padding
 // gdb-check:$10 = {x = {{40, 41, 42}, {43, 44}}, y = {45, 46, 47, 48}}
 
-#![allow(unused_variable)]
+#![allow(unused_variables)]
 
 struct NoPadding1 {
     x: (i32, i32),