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!";
|
2014-01-09 04:06:55 -06:00
|
|
|
let f: |&str| = |s| println!("{}", s + string);
|
2013-10-29 17:06:13 -05:00
|
|
|
call_bare(f) //~ ERROR mismatched types
|
|
|
|
}
|
|
|
|
|