mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-07-19 11:43:39 -04:00
11 lines
238 B
Rust
11 lines
238 B
Rust
#![feature(rustdoc_internals)]
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
pub use std::fs::File;
|
|
|
|
// @has 'foo/primitive.i16.html' '//h2[@id="synthetic-implementations"]' 'Auto Trait Implementation'
|
|
#[doc(primitive = "i16")]
|
|
/// I love poneys!
|
|
mod prim {}
|