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

13 lines
239 B
Rust

#![feature(const_trait_impl)]
struct Foo;
const impl Foo { //~ ERROR: expected identifier, found keyword
fn bar() {}
}
fn main() {
// shouldn't error here because we shouldn't have been able to recover above
Foo::bar();
}