rust/test/strings.rs

13 lines
185 B
Rust
Raw Normal View History

2016-03-19 00:19:39 -05:00
#![feature(custom_attribute)]
#![allow(dead_code, unused_attributes)]
#[miri_run]
fn empty() -> &'static str {
""
}
#[miri_run]
fn hello() -> &'static str {
"Hello, world!"
}