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