Files
rust/tests/ui/traits/const-traits/fallback.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
280 B
Rust
Raw Normal View History

2023-09-10 05:11:37 +00:00
//@ check-pass
2024-06-30 17:08:45 +00:00
//@ compile-flags: -Znext-solver
2023-09-10 05:11:37 +00:00
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!();
}
2023-09-10 05:11:37 +00:00
let _ = owo;
}