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