summary refs log tree commit diff
path: root/src/test/compile-fail
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-10-03 19:16:27 -0700
committerBrian Anderson <banderson@mozilla.com>2012-10-04 15:07:49 -0700
commitedc317b8212fe1c29b5e7e2e4e260b9a4d72b447 (patch)
tree3bdc8d5103affca408a0ff2bc2325f4869ecb375 /src/test/compile-fail
parente3f458e6390d66b9634e7dce4aa7e91c091aebc6 (diff)
downloadrust-edc317b8212fe1c29b5e7e2e4e260b9a4d72b447.tar.gz
rust-edc317b8212fe1c29b5e7e2e4e260b9a4d72b447.zip
Remove arg vectors from main functions. Stop supporting them.
Diffstat (limited to 'src/test/compile-fail')
-rw-r--r--src/test/compile-fail/bad-main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/bad-main.rs b/src/test/compile-fail/bad-main.rs
index 79364a1bb52..3bd1f47307b 100644
--- a/src/test/compile-fail/bad-main.rs
+++ b/src/test/compile-fail/bad-main.rs
@@ -1,3 +1,3 @@
-// error-pattern:expected `extern fn(++v: ~[~str])
+// error-pattern:expected `fn()
 
 fn main(x: int) { }