mirror of https://github.com/rust-lang/rust
17 lines
527 B
Rust
17 lines
527 B
Rust
//@ aux-build:t.rs
|
|
//@ build-aux-docs
|
|
//@ has q/struct.Quebec.html
|
|
//@ has s/struct.Sierra.html
|
|
//@ has t/trait.Tango.html
|
|
//@ hasraw s/struct.Sierra.html 'Tango'
|
|
//@ hasraw trait.impl/t/trait.Tango.js 'struct.Sierra.html'
|
|
//@ hasraw search-index.js 'Tango'
|
|
//@ hasraw search-index.js 'Sierra'
|
|
//@ hasraw search-index.js 'Quebec'
|
|
|
|
// We document multiple crates into the same output directory, which
|
|
// merges the cross-crate information. Everything is available.
|
|
extern crate t;
|
|
pub struct Sierra;
|
|
impl t::Tango for Sierra {}
|