blob: 253d16f3251cad0545a7d72088aae0a87533eb0a [file] [log] [blame]
//@ check-pass
//@ compile-flags: -Znext-solver
pub const fn owo() {}
fn main() {
// make sure falling back ty/int vars doesn't cause const fallback to be skipped...
// See issue: 115791.
let _ = 1;
if false {
let x = panic!();
}
let _ = owo;
}