2015-04-07 07:16:35 +00:00
|
|
|
// aux-build:issue-20727.rs
|
2015-04-22 22:22:36 +00:00
|
|
|
// ignore-cross-compile
|
2015-04-07 07:16:35 +00:00
|
|
|
|
|
|
|
extern crate issue_20727;
|
|
|
|
|
|
|
|
pub trait Bar {}
|
|
|
|
|
|
|
|
// @has issue_20727_3/trait.Deref2.html
|
|
|
|
pub trait Deref2 {
|
2023-01-30 18:05:12 +00:00
|
|
|
// @has - '//pre[@class="rust item-decl"]' 'trait Deref2 {'
|
|
|
|
// @has - '//pre[@class="rust item-decl"]' 'type Target: Bar;'
|
2015-04-07 07:16:35 +00:00
|
|
|
type Target: Bar;
|
|
|
|
|
2023-01-30 18:05:12 +00:00
|
|
|
// @has - '//pre[@class="rust item-decl"]' 'fn deref(&self) -> Self::Target;'
|
2015-04-07 07:16:35 +00:00
|
|
|
fn deref(&self) -> Self::Target;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has issue_20727_3/reexport/trait.Deref2.html
|
|
|
|
pub mod reexport {
|
2023-01-30 18:05:12 +00:00
|
|
|
// @has - '//pre[@class="rust item-decl"]' 'trait Deref2 {'
|
|
|
|
// @has - '//pre[@class="rust item-decl"]' 'type Target: Bar;'
|
|
|
|
// @has - '//pre[@class="rust item-decl"]' 'fn deref(&self) -> Self::Target;'
|
2015-04-07 07:16:35 +00:00
|
|
|
pub use issue_20727::Deref2;
|
|
|
|
}
|