test: Add a test case for bare static strings

This commit is contained in:
Patrick Walton 2012-08-03 11:51:47 -07:00
parent 4e60d7e3a6
commit aa4683c181

View File

@ -0,0 +1,5 @@
fn main() {
let x: &static/str = "foo";
io::println(x);
}