summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/no-std-2.rs
blob: 487d41649f4cb112387e718341011fee6e63dd0a (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass

#![no_std]

extern crate std;

fn main() {
    let a = core::option::Option::Some("foo");
    a.unwrap();
}