mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-25 23:50:18 +00:00
9 lines
241 B
Rust
9 lines
241 B
Rust
#![feature(rustdoc_internals)]
|
|
#![crate_name = "foo"]
|
|
|
|
// @has foo/primitive.i32.html '//*[@id="impl-ToString-for-i32"]//h3[@class="code-header"]' 'impl<T> ToString for T'
|
|
|
|
#[doc(primitive = "i32")]
|
|
/// Some useless docs, wouhou!
|
|
mod i32 {}
|