blob: 57770a745e88b920983ff989c1e710ddd6ff799d [file] [log] [blame] [edit]
//@ run-pass
#![no_std]
extern crate std;
fn main() {
let a = Some("foo");
a.unwrap();
}