2024-07-24 16:52:32 -05:00
|
|
|
//@ aux-build:f.rs
|
|
|
|
//@ build-aux-docs
|
|
|
|
//@ has e/enum.Echo.html
|
2024-07-24 17:16:01 -05:00
|
|
|
//@ !has f/trait.Foxtrot.html
|
2024-07-24 16:52:32 -05:00
|
|
|
//@ hasraw e/enum.Echo.html 'Foxtrot'
|
2024-07-24 17:16:01 -05:00
|
|
|
//@ hasraw trait.impl/f/trait.Foxtrot.js 'enum.Echo.html'
|
|
|
|
//@ !hasraw search-index.js 'Foxtrot'
|
|
|
|
//@ hasraw search-index.js 'Echo'
|
2024-07-24 16:52:32 -05:00
|
|
|
|
2024-07-24 17:16:01 -05:00
|
|
|
// test the fact that our test runner will document this crate somewhere
|
|
|
|
// else
|
2024-07-24 16:52:32 -05:00
|
|
|
extern crate f;
|
|
|
|
pub enum Echo {}
|
|
|
|
impl f::Foxtrot for Echo {}
|