about summary refs log tree commit diff
path: root/src/test/run-make/unicode-input
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2014-04-14 21:00:31 +0530
committerManish Goregaokar <manishsmail@gmail.com>2014-04-14 21:00:31 +0530
commit713e87526eac42aa9879e7cfb556ea64d63e7a91 (patch)
treec94084ee13a07e5dfa52827517629143571f6bf8 /src/test/run-make/unicode-input
parente2e754810c78a25c902b76c74ba8f04d0dcdc6f1 (diff)
downloadrust-713e87526eac42aa9879e7cfb556ea64d63e7a91.tar.gz
rust-713e87526eac42aa9879e7cfb556ea64d63e7a91.zip
Use new attribute syntax in python files in src/etc too (#13478)
Diffstat (limited to 'src/test/run-make/unicode-input')
-rw-r--r--src/test/run-make/unicode-input/span_length.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make/unicode-input/span_length.rs b/src/test/run-make/unicode-input/span_length.rs
index faa22962290..3b53af830e6 100644
--- a/src/test/run-make/unicode-input/span_length.rs
+++ b/src/test/run-make/unicode-input/span_length.rs
@@ -46,7 +46,7 @@ fn main() {
 
         {
             let _ = write!(&mut File::create(&main_file).unwrap(),
-                           r"\#[feature(non_ascii_idents)]; fn main() \{ {} \}",
+                           r"\#![feature(non_ascii_idents)] fn main() \{ {} \}",
                            // random string of length n
                            range(0, n).map(|_| random_char()).collect::<~str>());
         }