about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorCarol Nichols <carol.nichols@gmail.com>2015-05-09 13:09:47 -0400
committerCarol Nichols <carol.nichols@gmail.com>2015-05-09 13:10:57 -0400
commit757809c8d380886e5fa38d307ceeba3a3c74449e (patch)
treeecd3651060ac1088149e07881cf11cd02163e28d /src/test
parent7d5c248f31d1c6d0cb69d91be4d68e8740743287 (diff)
downloadrust-757809c8d380886e5fa38d307ceeba3a3c74449e.tar.gz
rust-757809c8d380886e5fa38d307ceeba3a3c74449e.zip
Remove auxiliary files not used since eb4d39e
Diffstat (limited to 'src/test')
-rw-r--r--src/test/auxiliary/issue_2242_a.rs20
-rw-r--r--src/test/auxiliary/issue_2242_c.rs20
2 files changed, 0 insertions, 40 deletions
diff --git a/src/test/auxiliary/issue_2242_a.rs b/src/test/auxiliary/issue_2242_a.rs
deleted file mode 100644
index 33b6d116c8a..00000000000
--- a/src/test/auxiliary/issue_2242_a.rs
+++ /dev/null
@@ -1,20 +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.
-
-#![crate_name="a#0.1"]
-#![crate_type = "lib"]
-
-trait to_strz {
-    fn to_strz() -> String;
-}
-
-impl to_strz for String {
-    fn to_strz() -> String { self.clone() }
-}
diff --git a/src/test/auxiliary/issue_2242_c.rs b/src/test/auxiliary/issue_2242_c.rs
deleted file mode 100644
index 31d119b20be..00000000000
--- a/src/test/auxiliary/issue_2242_c.rs
+++ /dev/null
@@ -1,20 +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.
-
-#![crate_name="c#0.1"]
-#![crate_type = "lib"]
-
-extern crate a;
-
-use a::to_strz;
-
-impl to_strz for bool {
-    fn to_strz() -> String { fmt!("%b", self) }
-}