mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
12 lines
237 B
Rust
12 lines
237 B
Rust
// run-pass
|
|
// ^-- The above is needed as this issue is related to LLVM/codegen.
|
|
|
|
fn main() {
|
|
type_error(|x| &x);
|
|
}
|
|
|
|
fn type_error<T>(
|
|
_selector: for<'a> fn(&'a Vec<Box<dyn for<'b> Fn(&'b u8)>>) -> &'a Vec<Box<dyn Fn(T)>>,
|
|
) {
|
|
}
|