about summary refs log tree commit diff
path: root/src/test/pretty/do1.rs
diff options
context:
space:
mode:
authorSeo Sanghyeon <sanxiyn@gmail.com>2013-02-08 02:56:49 +0900
committerSeo Sanghyeon <sanxiyn@gmail.com>2013-02-08 02:56:49 +0900
commit683e7a45a6cca2ae31271ff2b10dd09ca8647130 (patch)
tree19dceba1a320c5257c95c55d87e13e9e0b5b8461 /src/test/pretty/do1.rs
parentfa69739320d84956ccea20f2f6b526d64d6e9504 (diff)
downloadrust-683e7a45a6cca2ae31271ff2b10dd09ca8647130.tar.gz
rust-683e7a45a6cca2ae31271ff2b10dd09ca8647130.zip
Change pretty-exact to pp-exact
Diffstat (limited to 'src/test/pretty/do1.rs')
-rw-r--r--src/test/pretty/do1.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/test/pretty/do1.rs b/src/test/pretty/do1.rs
index fc90b2b4e92..a9608f2beec 100644
--- a/src/test/pretty/do1.rs
+++ b/src/test/pretty/do1.rs
@@ -8,10 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// pretty-exact
+// pp-exact
 
-fn f(f: fn@(int)) { f(10) }
+fn f(f: @fn(int)) { f(10) }
 
-fn main() {
-    do f |i| { assert i == 10 }
-}
+fn main() { do f |i| { assert i == 10 } }