2025-04-08 15:17:08 +02:00
|
|
|
//@ compile-flags: --crate-type lib
|
|
|
|
|
//@ edition: 2018
|
2021-03-17 11:41:01 -07:00
|
|
|
|
2023-03-21 16:44:06 +01:00
|
|
|
#![feature(rustc_attrs)]
|
2021-07-05 22:50:26 -04:00
|
|
|
#![feature(no_core)]
|
|
|
|
|
#![no_core]
|
|
|
|
|
|
2023-03-21 16:44:06 +01:00
|
|
|
#[rustc_doc_primitive = "usize"]
|
2021-03-17 11:41:01 -07:00
|
|
|
/// This is the built-in type `usize`.
|
|
|
|
|
mod usize {
|
|
|
|
|
}
|