mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
18 lines
568 B
Rust
18 lines
568 B
Rust
// aux-build:alias-reexport.rs
|
|
// aux-build:alias-reexport2.rs
|
|
|
|
#![crate_name = "foo"]
|
|
#![feature(lazy_type_alias)]
|
|
#![allow(incomplete_features)]
|
|
|
|
extern crate alias_reexport2;
|
|
|
|
// @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;'
|
|
#[doc(inline)]
|
|
pub use alias_reexport2 as reexport;
|