blob: f9737240c70a294ed34ed06717e5649343b4b111 (
plain)
1
2
3
4
5
6
7
8
9
|
#![feature(rustdoc_internals)]
#![crate_name = "foo"]
// @has foo/primitive.i32.html '//div[@id="impl-ToString"]//h3[@class="code-header in-band"]' 'impl<T> ToString for T'
#[doc(primitive = "i32")]
/// Some useless docs, wouhou!
mod i32 {}
|