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

extern crate std;

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