-
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.
- Loading branch information
1 parent
0984bec
commit 97f5545
Showing
9 changed files
with
134 additions
and
1 deletion.
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
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,6 @@ | ||
// compile-flags: -Z threads=8 | ||
// run-pass | ||
|
||
fn main() { | ||
println!("Hello world!"); | ||
} |
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,18 @@ | ||
// compile-flags: -Z threads=16 | ||
// run-pass | ||
|
||
#[repr(transparent)] | ||
struct Sched { | ||
i: i32, | ||
} | ||
impl Sched { | ||
extern "C" fn get(self) -> i32 { self.i } | ||
} | ||
|
||
fn main() { | ||
let s = Sched { i: 4 }; | ||
let f = || -> i32 { | ||
s.get() | ||
}; | ||
println!("f: {}", f()); | ||
} |
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,16 @@ | ||
// compile-flags: -Z threads=16 | ||
// build-fail | ||
|
||
#![crate_type="rlib"] | ||
#![allow(warnings)] | ||
|
||
#[export_name="fail"] | ||
pub fn a() { | ||
} | ||
|
||
#[export_name="fail"] | ||
pub fn b() { | ||
//~^ Error symbol `fail` is already defined | ||
} | ||
|
||
fn main() {} |
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 `fail` is already defined | ||
--> $DIR/issue-111528.rs:12:1 | ||
| | ||
LL | pub fn b() { | ||
| ^^^^^^^^^^ | ||
|
||
error: aborting due to 1 previous error | ||
|
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 @@ | ||
// compile-flags:-C extra-filename=-1 -Z threads=16 | ||
// no-prefer-dynamic | ||
// build-pass | ||
#![crate_name = "crateresolve1"] | ||
#![crate_type = "lib"] | ||
|
||
pub fn f() -> isize { 10 } |
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,22 @@ | ||
// compile-flags: -Z threads=16 | ||
// build-pass | ||
|
||
pub static GLOBAL: isize = 3; | ||
|
||
static GLOBAL0: isize = 4; | ||
|
||
pub static GLOBAL2: &'static isize = &GLOBAL0; | ||
|
||
pub fn verify_same(a: &'static isize) { | ||
let a = a as *const isize as usize; | ||
let b = &GLOBAL as *const isize as usize; | ||
assert_eq!(a, b); | ||
} | ||
|
||
pub fn verify_same2(a: &'static isize) { | ||
let a = a as *const isize as usize; | ||
let b = GLOBAL2 as *const isize as usize; | ||
assert_eq!(a, b); | ||
} | ||
|
||
fn main() {} |
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,24 @@ | ||
// compile-flags: -Z threads=16 | ||
|
||
use std::collections::BTreeSet; | ||
|
||
#[derive(Hash)] | ||
pub enum ElemDerived { | ||
//~^ ERROR E0072 | ||
//~| ERROR E0391 | ||
A(ElemDerived) | ||
} | ||
|
||
pub enum Elem { | ||
Derived(ElemDerived) | ||
} | ||
|
||
pub struct Set(BTreeSet<Elem>); | ||
|
||
impl Set { | ||
pub fn into_iter(self) -> impl Iterator<Item = Elem> { | ||
self.0.into_iter() | ||
} | ||
} | ||
|
||
fn main() {} |
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,32 @@ | ||
error[E0072]: recursive type `ElemDerived` has infinite size | ||
--> $DIR/issue-94654.rs:6:1 | ||
| | ||
LL | pub enum ElemDerived { | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
... | ||
LL | A(ElemDerived) | ||
| ----------- recursive without indirection | ||
| | ||
help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle | ||
| | ||
LL | A(Box<ElemDerived>) | ||
| ++++ + | ||
|
||
error[E0391]: cycle detected when computing drop-check constraints for `ElemDerived` | ||
--> $DIR/issue-94654.rs:6:1 | ||
| | ||
LL | pub enum ElemDerived { | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: ...which immediately requires computing drop-check constraints for `ElemDerived` again | ||
note: cycle used when computing drop-check constraints for `Elem` | ||
--> $DIR/issue-94654.rs:12:1 | ||
| | ||
LL | pub enum Elem { | ||
| ^^^^^^^^^^^^^ | ||
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
Some errors have detailed explanations: E0072, E0391. | ||
For more information about an error, try `rustc --explain E0072`. |