]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/no-std-2.rs
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / run-pass / no-std-2.rs
CommitLineData
e9174d1e 1#![no_std]
c34b1796 2
e9174d1e
SL
3extern crate std;
4
5fn main() {
6 let a = core::option::Option::Some("foo");
7 a.unwrap();
8}