mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
12 lines
156 B
Rust
12 lines
156 B
Rust
pub struct Option;
|
|
impl Option {
|
|
pub fn unwrap(self) {}
|
|
}
|
|
|
|
/// [`Option::unwrap`]
|
|
pub mod task {}
|
|
|
|
extern "C" {
|
|
pub fn main() -> std::ffi::c_int;
|
|
}
|