about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2014-11-27 06:44:05 -0500
committerNiko Matsakis <niko@alum.mit.edu>2014-12-14 04:21:56 -0500
commit27676d9aa96bd68f8560ade8b9fa61c9298874ea (patch)
tree2e623afeca04e18f2aa9e7fdf522e19eec42277a
parent5c3d3989192f88b16f39d554c3844700c91b6c8e (diff)
downloadrust-27676d9aa96bd68f8560ade8b9fa61c9298874ea.tar.gz
rust-27676d9aa96bd68f8560ade8b9fa61c9298874ea.zip
Delete tests that are either no longer relevant or which have
duplicate tests around object types.
-rw-r--r--src/test/compile-fail/borrowck-call-sendfn.rs19
-rw-r--r--src/test/compile-fail/issue-13599.rs23
-rw-r--r--src/test/compile-fail/kindck-proc-bounds.rs22
-rw-r--r--src/test/compile-fail/regions-proc-bounds.rs20
-rw-r--r--src/test/run-pass/proc-bounds.rs35
5 files changed, 0 insertions, 119 deletions
diff --git a/src/test/compile-fail/borrowck-call-sendfn.rs b/src/test/compile-fail/borrowck-call-sendfn.rs
deleted file mode 100644
index eb2ea6b3de4..00000000000
--- a/src/test/compile-fail/borrowck-call-sendfn.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2012-2014 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.
-
-struct Foo {
-    f: proc():'static
-}
-
-fn call(x: Foo) {
-    x.f(); //~ ERROR does not implement any method in scope named `f`
-}
-
-fn main() {}
diff --git a/src/test/compile-fail/issue-13599.rs b/src/test/compile-fail/issue-13599.rs
deleted file mode 100644
index eee23f1feba..00000000000
--- a/src/test/compile-fail/issue-13599.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright 2012-2014 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.
-
-// Test that a mismatched proc / closure type is correctly reported.
-
-fn expect_closure(_: ||) {}
-
-fn expect_proc(_: proc()) {}
-
-fn main() {
-    expect_closure(proc() {});
-    //~^ ERROR mismatched types: expected `||`, found `proc()` (expected closure, found proc)
-
-    expect_proc(|| {});
-    //~^ ERROR mismatched types: expected `proc()`, found `||` (expected proc, found closure)
-}
diff --git a/src/test/compile-fail/kindck-proc-bounds.rs b/src/test/compile-fail/kindck-proc-bounds.rs
deleted file mode 100644
index d87d1a33ca1..00000000000
--- a/src/test/compile-fail/kindck-proc-bounds.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2014 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 is_send<T: Send>() {}
-fn is_freeze<T: Sync>() {}
-
-fn foo<'a>() {
-    is_send::<proc()>();
-    //~^ ERROR: the trait `core::kinds::Send` is not implemented
-
-    is_freeze::<proc()>();
-    //~^ ERROR: the trait `core::kinds::Sync` is not implemented
-}
-
-fn main() { }
diff --git a/src/test/compile-fail/regions-proc-bounds.rs b/src/test/compile-fail/regions-proc-bounds.rs
deleted file mode 100644
index 4c95e1eac6d..00000000000
--- a/src/test/compile-fail/regions-proc-bounds.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright 2014 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 is_static<T: 'static>() {}
-
-fn foo<'a>() {
-    is_static::<proc():'a>();
-    //~^ ERROR declared lifetime bound not satisfied
-
-    is_static::<proc():'static>();
-}
-
-fn main() { }
diff --git a/src/test/run-pass/proc-bounds.rs b/src/test/run-pass/proc-bounds.rs
deleted file mode 100644
index 7241b0b88b9..00000000000
--- a/src/test/run-pass/proc-bounds.rs
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2014 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 foo<T>() {}
-fn bar<T>(_: T) {}
-
-fn is_send<T: Send>() {}
-fn is_freeze<T: Sync>() {}
-fn is_static<T: 'static>() {}
-
-pub fn main() {
-    foo::<proc()>();
-    foo::<proc()>();
-    foo::<proc():Send>();
-    foo::<proc():Send + Sync>();
-    foo::<proc():'static + Send + Sync>();
-
-    is_send::<proc():Send>();
-    is_freeze::<proc():Sync>();
-    is_static::<proc():'static>();
-
-
-    let a = 3i;
-    bar::<proc()>(proc() {
-        let b = &a;
-        println!("{}", *b);
-    });
-}