]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/ifmt.rs
auto merge of #9140 : alexcrichton/rust/issue-9119, r=huonw
[rust.git] / src / test / run-pass / ifmt.rs
index 08d5ac5c1fb8e1b6d478c09c8f8b1ebef2d075ca..351bad193da2dfc85249039f122df30e7a2241c2 100644 (file)
@@ -87,6 +87,7 @@ pub fn main() {
     t!(format!("{foo} {1} {bar} {0}", 0, 1, foo=2, bar=3), "2 1 3 0");
     t!(format!("{} {0:s}", "a"), "a a");
     t!(format!("{} {0}", "a"), "a a");
+    t!(format!("{foo_bar}", foo_bar=1), "1");
 
     // Methods should probably work
     t!(format!("{0, plural, =1{a#} =2{b#} zero{c#} other{d#}}", 0u), "c0");