2024-07-24 21:52:32 +00:00
|
|
|
//@ aux-build:f.rs
|
|
|
|
|
//@ build-aux-docs
|
|
|
|
|
//@ has e/enum.Echo.html
|
2024-07-24 22:16:01 +00:00
|
|
|
//@ has f/trait.Foxtrot.html
|
2024-07-24 21:52:32 +00:00
|
|
|
//@ hasraw e/enum.Echo.html 'Foxtrot'
|
2024-07-24 22:16:01 +00:00
|
|
|
//@ hasraw trait.impl/f/trait.Foxtrot.js 'enum.Echo.html'
|
|
|
|
|
//@ hasraw search-index.js 'Foxtrot'
|
|
|
|
|
//@ hasraw search-index.js 'Echo'
|
2024-07-24 21:52:32 +00:00
|
|
|
|
2024-07-24 22:16:01 +00:00
|
|
|
// document two crates in the same way that cargo does. do not provide
|
|
|
|
|
// --enable-index-page
|
2024-07-24 21:52:32 +00:00
|
|
|
extern crate f;
|
|
|
|
|
pub enum Echo {}
|
|
|
|
|
impl f::Foxtrot for Echo {}
|