forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only check in a single place if a pass is enabled.
- Loading branch information
Showing
3 changed files
with
41 additions
and
13 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
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,19 @@ | ||
// Check that `-Zmir-enable-passes=+Inline` does not ICE because of stolen MIR. | ||
// unit-test: Inline | ||
// skip-filecheck | ||
#![crate_type = "lib"] | ||
|
||
// Randomize `def_path_hash` by defining them under a module with different names | ||
macro_rules! emit { | ||
($($m:ident)*) => {$( | ||
pub mod $m { | ||
pub fn main() { | ||
let func = || 123u8; | ||
func(); | ||
} | ||
} | ||
)*}; | ||
} | ||
|
||
// Increase the chance of triggering the bug | ||
emit!(m00 m01 m02 m03 m04 m05 m06 m07 m08 m09 m10 m11 m12 m13 m14 m15 m16 m17 m18 m19); |