rust/tests/ui/feature-gates/feature-gate-min-generic-const-args.rs

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

14 lines
289 B
Rust
Raw Normal View History

trait Trait {
#[type_const]
//~^ ERROR experimental
const ASSOC: usize;
}
// FIXME(mgca): add suggestion for mgca to this error
fn foo<T: Trait>() -> [u8; <T as Trait>::ASSOC] {
//~^ ERROR generic parameters may not be used in const operations
loop {}
}
fn main() {}