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