rust/src/test/compile-fail/extfmt-not-enough-args.rs

6 lines
103 B
Rust
Raw Normal View History

// error-pattern:not enough arguments
use std;
2012-08-22 19:24:52 -05:00
fn main() { let s = fmt!("%s%s%s", "test", "test"); }