mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 16:34:04 +00:00
11 lines
99 B
Rust
11 lines
99 B
Rust
// run-pass
|
|
|
|
#![no_std]
|
|
|
|
extern crate std;
|
|
|
|
fn main() {
|
|
let a = Some("foo");
|
|
a.unwrap();
|
|
}
|