-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests for external linkage symbol collision check.
Fix #61232
- Loading branch information
Showing
5 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#![feature(linkage)] | ||
#![crate_type = "lib"] | ||
|
||
extern { | ||
#[linkage="external"] | ||
pub static collision: *const i32; | ||
} |
21 changes: 21 additions & 0 deletions
21
src/test/ui/linkage-attr/linkage-detect-extern-generated-name-collision.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// rust-lang/rust#61232: We used to ICE when trying to detect a | ||
// collision on the symbol generated for the external linkage item in | ||
// an extern crate. | ||
|
||
// aux-build:def_colliding_external.rs | ||
|
||
extern crate def_colliding_external as dep1; | ||
|
||
#[no_mangle] | ||
pub static _rust_extern_with_linkage_collision: i32 = 0; | ||
|
||
mod dep2 { | ||
#[no_mangle] | ||
pub static collision: usize = 0; | ||
} | ||
|
||
fn main() { | ||
unsafe { | ||
println!("{:p}", &dep1::collision); | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
src/test/ui/linkage-attr/linkage-detect-extern-generated-name-collision.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
error: symbol `collision` is already defined | ||
--> $DIR/auxiliary/def_colliding_external.rs:6:5 | ||
| | ||
LL | pub static collision: *const i32; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to previous error | ||
|
23 changes: 23 additions & 0 deletions
23
src/test/ui/linkage-attr/linkage-detect-local-generated-name-collision.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#![feature(linkage)] | ||
|
||
mod dep1 { | ||
extern { | ||
#[linkage="external"] | ||
#[no_mangle] | ||
pub static collision: *const i32; //~ ERROR symbol `collision` is already defined | ||
} | ||
} | ||
|
||
#[no_mangle] | ||
pub static _rust_extern_with_linkage_collision: i32 = 0; | ||
|
||
mod dep2 { | ||
#[no_mangle] | ||
pub static collision: usize = 0; | ||
} | ||
|
||
fn main() { | ||
unsafe { | ||
println!("{:p}", &dep1::collision); | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
src/test/ui/linkage-attr/linkage-detect-local-generated-name-collision.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
error: symbol `collision` is already defined | ||
--> $DIR/linkage-detect-local-generated-name-collision.rs:7:9 | ||
| | ||
LL | pub static collision: *const i32; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to previous error | ||
|