mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 19:58:32 +00:00
11 lines
181 B
Rust
11 lines
181 B
Rust
![]() |
pub enum Sexpr<'a> {
|
||
|
Ident(&'a str),
|
||
|
}
|
||
|
|
||
|
fn map<'a, F: Fn(String) -> Sexpr<'a>>(f: F) {}
|
||
|
|
||
|
fn main() {
|
||
|
map(Sexpr::Ident);
|
||
|
//~^ ERROR type mismatch in function arguments
|
||
|
}
|