rust/tests/ui/traits/const-traits/match-non-const-eq.rs
Michael Goulet e91267f3f0 Move tests
2024-10-22 00:03:09 +00:00

14 lines
351 B
Rust

//@ known-bug: #110395
//@ revisions: stock gated
#![cfg_attr(gated, feature(const_trait_impl))]
const fn foo(input: &'static str) {
match input {
"a" => (), //FIXME [gated]~ ERROR can't compare `str` with `str` in const contexts
//FIXME ~^ ERROR cannot match on `str` in constant functions
_ => (),
}
}
fn main() {}