diff options
| author | bors <bors@rust-lang.org> | 2013-10-01 11:26:27 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-10-01 11:26:27 -0700 |
| commit | c8cdabc32fc7c6a5c3b01ef24340bc2f4b1ae359 (patch) | |
| tree | 333abfadefa05bf675f8368212f5a3d0558ae7bc /src/test | |
| parent | 24a253778aa26222cae97e3b57f85e5054a39977 (diff) | |
| parent | eafbcfb73cad912a0b2c2ec24f028257e5f2f999 (diff) | |
auto merge of #9633 : alexcrichton/rust/issue-9631, r=huonw
Closes #9631
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-pass/format-no-uppercase-statics.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/run-pass/format-no-uppercase-statics.rs b/src/test/run-pass/format-no-uppercase-statics.rs new file mode 100644 index 00000000000..585a61544ca --- /dev/null +++ b/src/test/run-pass/format-no-uppercase-statics.rs @@ -0,0 +1,15 @@ +// Copyright 2013 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#[deny(non_uppercase_statics)]; + +pub fn main() { + println!("I generate statics with {0, select, other{#}}", "weird names"); +} |
