rust/src/test/compile-fail/extfmt-too-many-args.rs
2011-09-19 18:00:41 -07:00

6 lines
97 B
Rust

// error-pattern:too many arguments
use std;
fn main() { let s = #fmt["%s", "test", "test"]; }