mirror of
https://github.com/Noratrieb/rlo-issue-112061.git
synced 2026-01-14 16:35:04 +01:00
13 lines
No EOL
253 B
Bash
Executable file
13 lines
No EOL
253 B
Bash
Executable file
#/usr/bin/env bash
|
|
|
|
rustc code.rs --crate-name bad -Zmir-enable-passes=-ConstProp
|
|
rustc code.rs --crate-name good -Zmir-enable-passes=+ConstProp
|
|
|
|
bad=$(./bad)
|
|
good=$(./good)
|
|
|
|
if [ good != bad ]; then
|
|
echo "MISCOMPILATION"
|
|
else
|
|
echo "no repro"
|
|
fi |