Remove auxiliary files not used since 812637e
This commit is contained in:
parent
67ba6dcf68
commit
14d476ecbb
8 changed files with 0 additions and 164 deletions
|
|
@ -1,15 +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="crateresolve3#0.1"]
|
||||
|
||||
#![crate_type = "lib"]
|
||||
|
||||
pub fn f() -> isize { 10 }
|
||||
|
|
@ -1,15 +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="crateresolve3#0.2"]
|
||||
|
||||
#![crate_type = "lib"]
|
||||
|
||||
pub fn g() -> isize { 20 }
|
||||
|
|
@ -1,34 +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="crateresolve5#0.1"]
|
||||
|
||||
#![crate_type = "lib"]
|
||||
|
||||
pub struct NameVal { pub name: String, pub val: isize }
|
||||
|
||||
pub fn struct_nameval() -> NameVal {
|
||||
NameVal { name: "crateresolve5".to_string(), val: 10 }
|
||||
}
|
||||
|
||||
pub enum e {
|
||||
e_val
|
||||
}
|
||||
|
||||
pub fn nominal() -> e { e_val }
|
||||
|
||||
pub fn nominal_eq(_e1: e, _e2: e) -> bool { true }
|
||||
|
||||
impl PartialEq for e {
|
||||
fn eq(&self, other: &e) -> bool { nominal_eq(*self, *other) }
|
||||
fn ne(&self, other: &e) -> bool { !nominal_eq(*self, *other) }
|
||||
}
|
||||
|
||||
pub fn f() -> isize { 10 }
|
||||
|
|
@ -1,33 +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="crateresolve5#0.2"]
|
||||
|
||||
#![crate_type = "lib"]
|
||||
|
||||
pub struct NameVal { pub name: String, pub val: isize }
|
||||
pub fn struct_nameval() -> NameVal {
|
||||
NameVal { name: "crateresolve5".to_string(), val: 10 }
|
||||
}
|
||||
|
||||
pub enum e {
|
||||
e_val
|
||||
}
|
||||
|
||||
impl PartialEq for e {
|
||||
fn eq(&self, other: &e) -> bool { !nominal_neq(*self, *other) }
|
||||
fn ne(&self, other: &e) -> bool { nominal_neq(*self, *other) }
|
||||
}
|
||||
|
||||
pub fn nominal() -> e { e_val }
|
||||
|
||||
pub fn nominal_neq(_e1: e, _e2: e) -> bool { false }
|
||||
|
||||
pub fn f() -> isize { 20 }
|
||||
|
|
@ -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.
|
||||
|
||||
// aux-build:crateresolve_calories-1.rs
|
||||
// aux-build:crateresolve_calories-2.rs
|
||||
|
||||
// These both have the same version but differ in other metadata
|
||||
pub mod a {
|
||||
extern crate cr_1 (name = "crateresolve_calories", vers = "0.1", calories="100");
|
||||
pub fn f() -> isize { cr_1::f() }
|
||||
}
|
||||
|
||||
pub mod b {
|
||||
extern crate cr_2 (name = "crateresolve_calories", vers = "0.1", calories="200");
|
||||
pub fn f() -> isize { cr_2::f() }
|
||||
}
|
||||
|
|
@ -1,16 +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.
|
||||
|
||||
// default link meta for 'package_id' will be equal to filestem
|
||||
#![crate_name="crateresolve8#0.1"]
|
||||
|
||||
#![crate_type = "lib"]
|
||||
|
||||
pub fn f() -> isize { 20 }
|
||||
|
|
@ -1,14 +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="crateresolve_calories#0.1"]
|
||||
#![crate_type = "lib"]
|
||||
|
||||
pub fn f() -> isize { 100 }
|
||||
|
|
@ -1,14 +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="crateresolve_calories#0.1"]
|
||||
#![crate_type = "lib"]
|
||||
|
||||
pub fn f() -> isize { 200 }
|
||||
Loading…
Add table
Add a link
Reference in a new issue