summaryrefslogtreecommitdiffstats
path: root/src/test/pretty/disamb-stmt-expr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/pretty/disamb-stmt-expr.rs')
-rw-r--r--src/test/pretty/disamb-stmt-expr.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/pretty/disamb-stmt-expr.rs b/src/test/pretty/disamb-stmt-expr.rs
deleted file mode 100644
index 734f9fa12..000000000
--- a/src/test/pretty/disamb-stmt-expr.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-// pp-exact
-
-// Here we check that the parentheses around the body of `wsucc()` are
-// preserved. They are needed to disambiguate `{return n+1}; - 0` from
-// `({return n+1}-0)`.
-
-fn id<F>(f: F) -> isize where F: Fn() -> isize { f() }
-
-fn wsucc(_n: isize) -> isize { id(|| { 1 }) - 0 }
-fn main() {}