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