rust/src/test/compile-fail/extfmt-non-literal.rs
2012-07-30 18:38:15 -07:00

9 lines
225 B
Rust

// error-pattern: literal
fn main() {
// #fmt's first argument must be a literal. Hopefully this
// restriction can be eased eventually to just require a
// compile-time constant.
let x = fmt!{"a" + "b"};
}