about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2015-03-08 00:58:45 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2015-03-10 22:02:47 +0100
commit4e877adddf7b2f7d9093bf26cd8649f30c04b834 (patch)
tree150c8e31641a981685d4c4eaab5bb9abd9afeebe /src/test
parentd30609ffd782c941f38d62caaed8beb6fde965db (diff)
downloadrust-4e877adddf7b2f7d9093bf26cd8649f30c04b834.tar.gz
rust-4e877adddf7b2f7d9093bf26cd8649f30c04b834.zip
Remove proc keyword
Diffstat (limited to 'src/test')
-rw-r--r--src/test/parse-fail/obsolete-proc.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/parse-fail/obsolete-proc.rs b/src/test/parse-fail/obsolete-proc.rs
index 5208cdb6ad2..e440280d7e4 100644
--- a/src/test/parse-fail/obsolete-proc.rs
+++ b/src/test/parse-fail/obsolete-proc.rs
@@ -10,8 +10,8 @@
 
 // Test that we generate obsolete syntax errors around usages of `proc`.
 
-fn foo(p: proc()) { } //~ ERROR obsolete syntax: the `proc` type
+fn foo(p: proc()) { } //~ ERROR: the `proc` type isn't used for the moment
 
-fn bar() { proc() 1; } //~ ERROR obsolete syntax: `proc` expression
+fn bar() { proc() 1; } //~ ERROR: `proc` expression isn't used for the moment
 
-fn main() { }
+fn main() { }
\ No newline at end of file