rust/tests/rustdoc/auxiliary/issue-100204-aux.rs

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

14 lines
143 B
Rust
Raw Normal View History

#![crate_name="first"]
pub mod prelude {
pub use crate::Bot;
}
pub struct Bot;
impl Bot {
pub fn new() -> Bot {
Bot
}
}