2023-06-19 08:05:46 -05:00
|
|
|
#![feature(lazy_type_alias)]
|
|
|
|
|
|
|
|
extern crate alias_reexport;
|
|
|
|
|
|
|
|
pub use alias_reexport::Reexported;
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.foo.html'
|
|
|
|
//@ has - '//*[@class="docblock item-decl"]' 'pub fn foo() -> Reexported'
|
2023-06-19 08:05:46 -05:00
|
|
|
pub fn foo() -> Reexported { 0 }
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.foo2.html'
|
|
|
|
//@ has - '//*[@class="docblock item-decl"]' 'pub fn foo2() -> Result<Reexported, ()>'
|
2023-06-19 08:05:46 -05:00
|
|
|
pub fn foo2() -> Result<Reexported, ()> { Ok(0) }
|