2018-03-27 14:37:27 -05:00
|
|
|
//@ aux-build:extern-impl-trait.rs
|
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
extern crate extern_impl_trait;
|
|
|
|
|
2024-06-21 07:03:08 -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;
|
|
|
|
|
2024-06-21 07:03:08 -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;
|