rust/tests/rustdoc/auto-impl-primitive.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
237 B
Rust
Raw Normal View History

2023-03-21 23:44:06 +08:00
#![feature(rustc_attrs)]
2018-05-07 20:01:53 +08:00
#![crate_name = "foo"]
2018-05-07 20:01:53 +08:00
pub use std::fs::File;
// @has 'foo/primitive.i16.html' '//h2[@id="synthetic-implementations"]' 'Auto Trait Implementation'
2023-03-21 23:44:06 +08:00
#[rustc_doc_primitive = "i16"]
2018-05-07 20:01:53 +08:00
/// I love poneys!
mod prim {}