summary refs log tree commit diff
path: root/src/test/run-pass/no-std-1.rs
blob: fecf7397c8f87826dc222f8942674a53a169718f (plain)
1
2
3
4
5
6
7
8
#![no_std]

extern crate std;

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