rust/src/test/run-pass/bare-static-string.rs

6 lines
67 B
Rust
Raw Normal View History

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