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