]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/no-std-1.rs
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / ui / resolve / 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 }