about summary refs log tree commit diff
path: root/src/test/run-pass/expr-block-ref.rs
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-pass/expr-block-ref.rs
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-pass/expr-block-ref.rs')
-rw-r--r--src/test/run-pass/expr-block-ref.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/expr-block-ref.rs b/src/test/run-pass/expr-block-ref.rs
index 8ed2a9a6b3f..400c9f8023a 100644
--- a/src/test/run-pass/expr-block-ref.rs
+++ b/src/test/run-pass/expr-block-ref.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#[feature(managed_boxes)];
+#![feature(managed_boxes)]
 
 // Regression test for issue #388
 pub fn main() { let _x = { { @10 } }; }