rust/src/test/run-pass/bare-static-string.rs
2012-08-03 11:51:47 -07:00

6 lines
67 B
Rust

fn main() {
let x: &static/str = "foo";
io::println(x);
}