rust/src/test/run-fail/fmt-fail.rs

5 lines
113 B
Rust
Raw Normal View History

// error-pattern:meh
use std;
import std::str;
2011-07-27 07:19:39 -05:00
fn main() { let str_var: str = "meh"; fail #fmt("%s", str_var); }