diff options
Diffstat (limited to 'src/libfuzzer/fuzzer.rc')
| -rw-r--r-- | src/libfuzzer/fuzzer.rc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libfuzzer/fuzzer.rc b/src/libfuzzer/fuzzer.rc index 3714b6763c6..1eb4ff98a6e 100644 --- a/src/libfuzzer/fuzzer.rc +++ b/src/libfuzzer/fuzzer.rc @@ -137,7 +137,7 @@ pub fn safe_to_steal_ty(t: @ast::Ty, tm: test_mode) -> bool { } // Not type-parameterized: https://github.com/mozilla/rust/issues/898 (FIXED) -pub fn stash_expr_if(c: fn@(@ast::expr, test_mode)->bool, +pub fn stash_expr_if(c: @fn(@ast::expr, test_mode)->bool, es: @mut ~[ast::expr], e: @ast::expr, tm: test_mode) { @@ -148,7 +148,7 @@ pub fn stash_expr_if(c: fn@(@ast::expr, test_mode)->bool, } } -pub fn stash_ty_if(c: fn@(@ast::Ty, test_mode)->bool, +pub fn stash_ty_if(c: @fn(@ast::Ty, test_mode)->bool, es: @mut ~[ast::Ty], e: @ast::Ty, tm: test_mode) { @@ -252,7 +252,7 @@ pub fn under(n: uint, it: fn(uint)) { while i < n { it(i); i += 1u; } } -pub fn as_str(f: fn@(+x: io::Writer)) -> ~str { +pub fn as_str(f: @fn(+x: io::Writer)) -> ~str { io::with_str_writer(f) } @@ -275,8 +275,8 @@ pub fn check_variants_T<T: Copy>( filename: &Path, thing_label: ~str, things: ~[T], - stringifier: fn@(@T, @syntax::parse::token::ident_interner) -> ~str, - replacer: fn@(ast::crate, uint, T, test_mode) -> ast::crate, + stringifier: @fn(@T, @syntax::parse::token::ident_interner) -> ~str, + replacer: @fn(ast::crate, uint, T, test_mode) -> ast::crate, cx: Context ) { error!("%s contains %u %s objects", filename.to_str(), |
