Remove auxiliary files not used since eb4d39e

This commit is contained in:
Carol Nichols 2015-05-09 13:09:47 -04:00
parent 7d5c248f31
commit 757809c8d3
2 changed files with 0 additions and 40 deletions

View File

@ -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() }
}

View File

@ -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) }
}