blob: 1600534dd4f8f3ad41a2779aab95061c0c1e7428 [file] [log] [blame]
struct MyStruct;
trait Test {
const TEST: fn() -> _;
//~^ ERROR: the placeholder `_` is not allowed within types on item signatures for associated constants [E0121]
}
impl Test for MyStruct {
const TEST: fn() -> _ = 42;
//~^ ERROR: the placeholder `_` is not allowed within types on item signatures for associated constants [E0121]
}
fn main() {}