mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 18:57:04 +00:00
10 lines
166 B
Rust
10 lines
166 B
Rust
// compile-flags: --crate-type lib --edition 2018
|
|
|
|
#![feature(no_core)]
|
|
#![no_core]
|
|
|
|
#[doc(primitive = "usize")]
|
|
/// This is the built-in type `usize`.
|
|
mod usize {
|
|
}
|