Add the tests for duplicate symbol errors
This commit is contained in:
parent
baa52caf83
commit
d36c4db96d
8 changed files with 172 additions and 0 deletions
21
src/test/compile-fail/dupe-symbols-1.rs
Normal file
21
src/test/compile-fail/dupe-symbols-1.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright 2015 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_type="rlib"]
|
||||
#![allow(warnings)]
|
||||
|
||||
#[export_name="fail"]
|
||||
pub fn a() {
|
||||
}
|
||||
|
||||
#[export_name="fail"]
|
||||
pub fn b() {
|
||||
//~^ symbol `fail` already exists
|
||||
}
|
25
src/test/compile-fail/dupe-symbols-2.rs
Normal file
25
src/test/compile-fail/dupe-symbols-2.rs
Normal file
|
@ -0,0 +1,25 @@
|
|||
// Copyright 2015 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_type="rlib"]
|
||||
#![allow(warnings)]
|
||||
|
||||
mod a {
|
||||
#[no_mangle]
|
||||
pub extern fn fail() {
|
||||
}
|
||||
}
|
||||
|
||||
mod b {
|
||||
#[no_mangle]
|
||||
pub extern fn fail() {
|
||||
//~^ symbol `fail` already exists
|
||||
}
|
||||
}
|
21
src/test/compile-fail/dupe-symbols-3.rs
Normal file
21
src/test/compile-fail/dupe-symbols-3.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright 2015 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_type="rlib"]
|
||||
#![allow(warnings)]
|
||||
|
||||
#[export_name="fail"]
|
||||
pub fn a() {
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub fn fail() {
|
||||
//~^ symbol `fail` already exists
|
||||
}
|
31
src/test/compile-fail/dupe-symbols-4.rs
Normal file
31
src/test/compile-fail/dupe-symbols-4.rs
Normal file
|
@ -0,0 +1,31 @@
|
|||
// Copyright 2015 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_type="rlib"]
|
||||
#![allow(warnings)]
|
||||
|
||||
|
||||
pub trait A {
|
||||
fn fail(self);
|
||||
}
|
||||
|
||||
struct B;
|
||||
struct C;
|
||||
|
||||
impl A for B {
|
||||
#[no_mangle]
|
||||
fn fail(self) {}
|
||||
}
|
||||
|
||||
impl A for C {
|
||||
#[no_mangle]
|
||||
fn fail(self) {}
|
||||
//~^ symbol `fail` already exists
|
||||
}
|
20
src/test/compile-fail/dupe-symbols-5.rs
Normal file
20
src/test/compile-fail/dupe-symbols-5.rs
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Copyright 2015 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_type="rlib"]
|
||||
#![allow(warnings)]
|
||||
|
||||
#[export_name="fail"]
|
||||
static HELLO: u8 = 0;
|
||||
|
||||
#[export_name="fail"]
|
||||
pub fn b() {
|
||||
//~^ symbol `fail` already exists
|
||||
}
|
18
src/test/compile-fail/dupe-symbols-6.rs
Normal file
18
src/test/compile-fail/dupe-symbols-6.rs
Normal file
|
@ -0,0 +1,18 @@
|
|||
// Copyright 2015 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_type="rlib"]
|
||||
#![allow(warnings)]
|
||||
|
||||
#[export_name="fail"]
|
||||
static HELLO: u8 = 0;
|
||||
|
||||
#[export_name="fail"]
|
||||
static HELLO_TWICE: u16 = 0;
|
||||
//~^ symbol `fail` already exists
|
21
src/test/compile-fail/dupe-symbols-7.rs
Normal file
21
src/test/compile-fail/dupe-symbols-7.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright 2015 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_type="rlib"]
|
||||
#![allow(warnings)]
|
||||
|
||||
extern {
|
||||
fn fail();
|
||||
}
|
||||
|
||||
#[export_name="fail"]
|
||||
pub fn a() {
|
||||
//~^ symbol `fail` already exists
|
||||
}
|
15
src/test/compile-fail/dupe-symbols-8.rs
Normal file
15
src/test/compile-fail/dupe-symbols-8.rs
Normal file
|
@ -0,0 +1,15 @@
|
|||
// Copyright 2015 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.
|
||||
//
|
||||
// error-pattern: entry symbol `main` defined multiple times
|
||||
#![allow(warnings)]
|
||||
|
||||
#[no_mangle]
|
||||
fn main(){}
|
Loading…
Add table
Add a link
Reference in a new issue