summary refs log tree commit diff
path: root/tests/ui/resolve/no-std-1.rs
blob: 57770a745e88b920983ff989c1e710ddd6ff799d (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass

#![no_std]

extern crate std;

fn main() {
    let a = Some("foo");
    a.unwrap();
}