2013-10-29 17:06:13 -05:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
|
|
|
|
fn call_bare(f: fn(&str)) {
|
|
|
|
f("Hello ");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let string = "world!";
|
2015-02-01 11:44:15 -06:00
|
|
|
let f = |s: &str| println!("{}{}", s, string);
|
2013-10-29 17:06:13 -05:00
|
|
|
call_bare(f) //~ ERROR mismatched types
|
|
|
|
}
|