We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following throws a 'Free regions in optimized MIR' ICE on master:
#![feature(adt_const_params)] #![feature(generic_const_exprs)] fn foo<const B: &'static bool>(arg: &'static bool) -> bool { B == arg } fn main() { foo::<{&true}>(&false); }
backtrace.txt