2018-03-27 14:37:27 -05:00
|
|
|
// aux-build:extern-impl-trait.rs
|
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
extern crate extern_impl_trait;
|
|
|
|
|
2021-07-25 16:41:57 -05:00
|
|
|
// @has 'foo/struct.X.html' '//h4[@class="code-header"]' "impl Foo<Associated = ()> + 'a"
|
2018-03-27 14:37:27 -05:00
|
|
|
pub use extern_impl_trait::X;
|
|
|
|
|
2023-07-25 19:11:35 -05:00
|
|
|
// @has 'foo/struct.Y.html' '//h4[@class="code-header"]' "impl Foo<Associated = ()> + ?Sized + 'a"
|
2018-03-27 14:37:27 -05:00
|
|
|
pub use extern_impl_trait::Y;
|