blob: 40a7a9154f1de76088554116ed0fe10e464adaf2 [file] [log] [blame]
//@run-rustfix
#![feature(const_trait_impl)]
struct Foo;
const impl Foo {
fn bar() {}
fn baz() {}
//~^ ERROR: redundant `const`
}
const _: () = {
Foo::bar();
Foo::baz();
};
fn main() {
}