mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
25 lines
281 B
Rust
25 lines
281 B
Rust
// build-fail
|
|
|
|
//
|
|
// error-pattern: symbol `fail` is already defined
|
|
#![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) {}
|
|
}
|