blob: 859716c38e462279c3da98549b72f2e48d64ffd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ compile-flags: --crate-type lib
//@ edition: 2018
#![feature(rustc_attrs)]
#![feature(no_core)]
#![no_core]
#[rustc_doc_primitive = "usize"]
/// This is the built-in type `usize`.
mod usize {
}
|