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