about summary refs log tree commit diff
path: root/tests/rustdoc/extern-impl-trait.rs
blob: 9cc235504e710b4e7f238d2cdf935ab808dad046 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ aux-build:extern-impl-trait.rs

#![crate_name = "foo"]

extern crate extern_impl_trait;

// @has 'foo/struct.X.html' '//h4[@class="code-header"]' "impl Foo<Associated = ()> + 'a"
pub use extern_impl_trait::X;

// @has 'foo/struct.Y.html' '//h4[@class="code-header"]' "impl Foo<Associated = ()> + ?Sized + 'a"
pub use extern_impl_trait::Y;