]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/no-std-2.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / resolve / 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 }