rust/src/test/compile-fail/extfmt-not-enough-args.rs
2011-06-04 17:10:04 -04:00

9 lines
122 B
Rust

// xfail-stage0
// error-pattern:not enough arguments
use std;
fn main() {
auto s = #fmt("%s%s%s", "test", "test");
}