mirror of https://github.com/rust-lang/rust.git
27 lines
1.1 KiB
Rust
27 lines
1.1 KiB
Rust
//@ aux-build:precise-capturing.rs
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
extern crate precise_capturing;
|
|
|
|
//@ has foo/fn.two.html '//section[@id="main-content"]//pre' "-> impl Sized + use<'b, 'a>"
|
|
pub fn two<'a, 'b, 'c>() -> impl Sized + use<'b, 'a /* no 'c */> {}
|
|
|
|
//@ has foo/fn.params.html '//section[@id="main-content"]//pre' "-> impl Sized + use<'a, T, N>"
|
|
pub fn params<'a, T, const N: usize>() -> impl Sized + use<'a, T, N> {}
|
|
|
|
//@ has foo/fn.none.html '//section[@id="main-content"]//pre' "-> impl Sized + use<>"
|
|
pub fn none() -> impl Sized + use<> {}
|
|
|
|
//@ has foo/fn.first.html '//section[@id="main-content"]//pre' "-> impl use<> + Sized"
|
|
pub fn first() -> impl use<> + Sized {}
|
|
|
|
//@ has foo/fn.cross_crate_empty.html '//section[@id="main-content"]//pre' "-> impl Sized + use<>"
|
|
pub use precise_capturing::cross_crate_empty;
|
|
|
|
//@ matches foo/fn.cross_crate_missing.html '//section[@id="main-content"]//pre' "-> impl Sized$"
|
|
pub use precise_capturing::cross_crate_missing;
|
|
|
|
//@ has foo/fn.cross_crate_args.html '//section[@id="main-content"]//pre' "-> impl Sized + use<'a, T, N>"
|
|
pub use precise_capturing::cross_crate_args;
|