blob: fc992ab3110a3edce84f398951343204f158447a (
plain)
1
2
3
4
5
6
7
|
//@ aux-build:trait-vis.rs
extern crate inner;
// @has trait_vis/struct.SomeStruct.html
// @has - '//h3[@class="code-header"]' 'impl Clone for SomeStruct'
pub use inner::SomeStruct;
|