mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
549 B
Rust
18 lines
549 B
Rust
// aux-build:unit-return.rs
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
extern crate unit_return;
|
|
|
|
// @has 'foo/fn.f0.html' '//pre[@class="rust item-decl"]' 'F: FnMut(u8) + Clone'
|
|
pub fn f0<F: FnMut(u8) + Clone>(f: F) {}
|
|
|
|
// @has 'foo/fn.f1.html' '//pre[@class="rust item-decl"]' 'F: FnMut(u16) + Clone'
|
|
pub fn f1<F: FnMut(u16) -> () + Clone>(f: F) {}
|
|
|
|
// @has 'foo/fn.f2.html' '//pre[@class="rust item-decl"]' 'F: FnMut(u32) + Clone'
|
|
pub use unit_return::f2;
|
|
|
|
// @has 'foo/fn.f3.html' '//pre[@class="rust item-decl"]' 'F: FnMut(u64) + Clone'
|
|
pub use unit_return::f3;
|