]> git.lizzy.rs Git - rust.git/blob - src/test/ui/no-std-2.rs
Sync rustc_codegen_cranelift 'ddd4ce25535cf71203ba3700896131ce55fde795'
[rust.git] / src / test / ui / no-std-2.rs
1 // run-pass
2
3 #![no_std]
4
5 extern crate std;
6
7 fn main() {
8     let a = core::option::Option::Some("foo");
9     a.unwrap();
10 }