]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-53689.rs
implement Hash for proc_macro::LineColumn
[rust.git] / tests / rustdoc / issue-53689.rs
1 // aux-build:issue-53689.rs
2
3 #![crate_name = "foo"]
4
5 extern crate issue_53689;
6
7 // @has foo/trait.MyTrait.html
8 // @!hasraw - 'MyStruct'
9 // @count - '//*[h3="impl<T> MyTrait for T"]' 1
10 pub trait MyTrait {}
11
12 impl<T> MyTrait for T {}
13
14 mod a {
15     pub use issue_53689::MyStruct;
16 }