mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +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
|
|
}
|