rust/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/no-explicit-const-params.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
651 B
Rust
Raw Normal View History

2023-10-25 10:28:23 -05:00
#![feature(const_trait_impl, effects)]
const fn foo() {}
#[const_trait]
trait Bar {
fn bar();
}
impl Bar for () {
fn bar() {}
}
fn main() {
foo::<true>();
//~^ ERROR: function takes 0 generic arguments but 1 generic argument was supplied
<() as Bar<true>>::bar();
//~^ ERROR: trait takes 0 generic arguments but 1 generic argument was supplied
}
const FOO: () = {
foo::<false>();
//~^ ERROR: function takes 0 generic arguments but 1 generic argument was supplied
<() as Bar<false>>::bar();
//~^ ERROR: trait takes 0 generic arguments but 1 generic argument was supplied
//~| ERROR: mismatched types
};