mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +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 {}
|