diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-03-21 18:05:05 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-03-28 17:12:21 -0700 |
| commit | 451e8c1c6178750a4c1789f40749562164a980b7 (patch) | |
| tree | f398acb54f2432247f3c174555010b3055cd7133 /src/test/compile-fail/lint-uppercase-variables.rs | |
| parent | c6bbb95ce26e75214003190b643f5098e39b6428 (diff) | |
| download | rust-451e8c1c6178750a4c1789f40749562164a980b7.tar.gz rust-451e8c1c6178750a4c1789f40749562164a980b7.zip | |
Convert most code to new inner attribute syntax.
Closes #2569
Diffstat (limited to 'src/test/compile-fail/lint-uppercase-variables.rs')
| -rw-r--r-- | src/test/compile-fail/lint-uppercase-variables.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/lint-uppercase-variables.rs b/src/test/compile-fail/lint-uppercase-variables.rs index 114d5d4fdf0..386b4019485 100644 --- a/src/test/compile-fail/lint-uppercase-variables.rs +++ b/src/test/compile-fail/lint-uppercase-variables.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#[deny(uppercase_variables)]; +#![deny(uppercase_variables)] use std::io::File; use std::io::IoError; |
