mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +00:00
11 lines
122 B
Rust
11 lines
122 B
Rust
//@ run-pass
|
|
|
|
#![no_std]
|
|
|
|
extern crate std;
|
|
|
|
fn main() {
|
|
let a = core::option::Option::Some("foo");
|
|
a.unwrap();
|
|
}
|