about summary refs log tree commit diff
path: root/src/test/compile-fail/not-enough-arguments.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/not-enough-arguments.rs')
-rw-r--r--src/test/compile-fail/not-enough-arguments.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/not-enough-arguments.rs b/src/test/compile-fail/not-enough-arguments.rs
index 2aeda5a7652..36480253c97 100644
--- a/src/test/compile-fail/not-enough-arguments.rs
+++ b/src/test/compile-fail/not-enough-arguments.rs
@@ -8,5 +8,5 @@ fn foo(a: int, b: int, c: int, d:int) {
 
 fn main() {
   foo(1, 2, 3);
-  //!^ ERROR this function takes 4 parameters but 3
+  //~^ ERROR this function takes 4 parameters but 3
 }