/src/test/compile-fail/extfmt-non-literal.rs
http://github.com/jruderman/rust · Rust · 8 lines · 3 code · 1 blank · 4 comment · 0 complexity · e08d244f0e91aed187e83b0cf45ccb6b MD5 · raw file
- // 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"};
- }