2023-06-19 08:05:46 -05:00
|
|
|
// gate-test-lazy_type_alias
|
|
|
|
//@ aux-build:alias-reexport.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_reexport;
|
|
|
|
|
|
|
|
use alias_reexport::Reexported;
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/fn.foo.html'
|
|
|
|
//@ has - '//*[@class="rust 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="rust item-decl"]' 'pub fn foo2() -> Result<Reexported, ()>'
|
2023-06-19 08:05:46 -05:00
|
|
|
pub fn foo2() -> Result<Reexported, ()> { Ok(0) }
|