mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
11 lines
184 B
Rust
11 lines
184 B
Rust
// run-pass
|
|
#![allow(unused_variables)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
fn foo<T, F: FnOnce(T) -> T>(f: F) {}
|
|
fn id<'a>(input: &'a u8) -> &'a u8 { input }
|
|
|
|
fn main() {
|
|
foo(id);
|
|
}
|