]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/extern-impl-trait.rs
Rollup merge of #85663 - fee1-dead:document-arc-from, r=m-ou-se
[rust.git] / src / test / rustdoc / extern-impl-trait.rs
1 // aux-build:extern-impl-trait.rs
2
3 #![crate_name = "foo"]
4
5 extern crate extern_impl_trait;
6
7 // @has 'foo/struct.X.html' '//code' "impl Foo<Associated = ()> + 'a"
8 pub use extern_impl_trait::X;
9
10 // @has 'foo/struct.Y.html' '//code' "impl ?Sized + Foo<Associated = ()> + 'a"
11 pub use extern_impl_trait::Y;