2020-07-04 17:30:45 +00:00
|
|
|
//@ check-pass
|
|
|
|
|
2021-01-04 19:05:51 +00:00
|
|
|
// need to emit MIR, because const prop (which emits `unconditional_panic`) only runs if
|
|
|
|
// the `optimized_mir` query is run, which it isn't in check-only mode.
|
|
|
|
//@ compile-flags: --crate-type lib --emit=mir,link
|
2020-07-10 17:00:38 +00:00
|
|
|
|
|
|
|
#![warn(unconditional_panic)]
|
|
|
|
|
2020-07-04 17:30:45 +00:00
|
|
|
pub struct Fixed64(i64);
|
|
|
|
|
2020-07-10 17:00:38 +00:00
|
|
|
// HACK: this test passes only because this is a const fn that is written to metadata
|
|
|
|
pub const fn div(f: Fixed64) {
|
|
|
|
f.0 / 0; //~ WARN will panic at runtime
|
2020-07-04 17:30:45 +00:00
|
|
|
}
|