about summary refs log tree commit diff
path: root/src/test/compile-fail/empty-vec-trailing-comma.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2014-03-05 15:28:08 -0800
committerHuon Wilson <dbau.pp+github@gmail.com>2014-03-21 23:37:21 +1100
commitaf79a5aa7da4f42fc0939a19f46fa73b894d6e9a (patch)
tree60c2e72eea83a8a4c70c76d6fe91967aeaf77632 /src/test/compile-fail/empty-vec-trailing-comma.rs
parent579eb2400b3cb5d9cf03a5c8792d63630489193a (diff)
downloadrust-af79a5aa7da4f42fc0939a19f46fa73b894d6e9a.tar.gz
rust-af79a5aa7da4f42fc0939a19f46fa73b894d6e9a.zip
test: Make manual changes to deal with the fallout from removal of
`~[T]` in test, libgetopts, compiletest, librustdoc, and libnum.
Diffstat (limited to 'src/test/compile-fail/empty-vec-trailing-comma.rs')
-rw-r--r--src/test/compile-fail/empty-vec-trailing-comma.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/compile-fail/empty-vec-trailing-comma.rs b/src/test/compile-fail/empty-vec-trailing-comma.rs
deleted file mode 100644
index 41cb351cdcd..00000000000
--- a/src/test/compile-fail/empty-vec-trailing-comma.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
-fn main() {
-    let v = vec!(); //~ ERROR unexpected token: `,`
-}