1 2 3 4 5 6 7 8
#![no_std] extern crate std; fn main() { let a = core::option::Option::Some("foo"); a.unwrap(); }