2023-06-19 13:05:46 +00:00
|
|
|
//@ aux-build:alias-reexport.rs
|
|
|
|
//@ aux-build:alias-reexport2.rs
|
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
#![feature(lazy_type_alias)]
|
2023-07-29 19:47:15 +00:00
|
|
|
#![allow(incomplete_features)]
|
2023-06-19 13:05:46 +00:00
|
|
|
|
|
|
|
extern crate alias_reexport2;
|
|
|
|
|
|
|
|
// @has 'foo/reexport/fn.foo.html'
|
2023-06-21 11:37:17 +00:00
|
|
|
// @has - '//*[@class="rust item-decl"]' 'pub fn foo() -> Reexported'
|
2023-06-19 13:05:46 +00:00
|
|
|
// @has 'foo/reexport/fn.foo2.html'
|
2023-06-21 11:37:17 +00:00
|
|
|
// @has - '//*[@class="rust item-decl"]' 'pub fn foo2() -> Result<Reexported, ()>'
|
2023-06-19 13:05:46 +00:00
|
|
|
// @has 'foo/reexport/type.Reexported.html'
|
|
|
|
// @has - '//*[@class="rust item-decl"]' 'pub type Reexported = u8;'
|
|
|
|
#[doc(inline)]
|
|
|
|
pub use alias_reexport2 as reexport;
|