]> git.proxmox.com Git - rustc.git/blame - tests/ui/resolve/no-std-2.rs
bump version to 1.80.1+dfsg1-1~bpo12+pve1
[rustc.git] / tests / ui / resolve / no-std-2.rs
CommitLineData
c620b35d 1//@ run-pass
416331ca 2
e9174d1e 3#![no_std]
c34b1796 4
e9174d1e
SL
5extern crate std;
6
7fn main() {
8 let a = core::option::Option::Some("foo");
9 a.unwrap();
10}