mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
18 lines
328 B
Rust
18 lines
328 B
Rust
// https://github.com/rust-lang/rust/issues/53689
|
|
//@ aux-build:issue-53689.rs
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
extern crate issue_53689;
|
|
|
|
// @has foo/trait.MyTrait.html
|
|
// @!hasraw - 'MyStruct'
|
|
// @count - '//*[h3="impl<T> MyTrait for T"]' 1
|
|
pub trait MyTrait {}
|
|
|
|
impl<T> MyTrait for T {}
|
|
|
|
mod a {
|
|
pub use issue_53689::MyStruct;
|
|
}
|