rust/src/test/pretty/disamb-stmt-expr.rs

21 lines
759 B
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// pp-exact
// Here we check that the parentheses around the body of `wsucc()` are
2012-08-01 19:30:05 -05:00
// preserved. They are needed to disambiguate `{return n+1}; - 0` from
// `({return n+1}-0)`.
2015-01-05 07:22:04 -06:00
fn id<F>(f: F) -> int where F: Fn() -> int { f() }
2013-11-24 13:44:28 -06:00
fn wsucc(_n: int) -> int { id(|| { 1 }) - 0 }
fn main() { }