rustc/tests/ui/generic-const-items/misplaced-where-clause.fixed
2024-06-21 09:39:33 +02:00

19 lines
356 B
Plaintext

//@ run-rustfix
#![feature(generic_const_items)]
#![allow(incomplete_features, dead_code)]
const K<T>: u64
= T::K where
T: Tr<()>;
//~^^^ ERROR where clauses are not allowed before const item bodies
trait Tr<P> {
const K: u64
= 0 where
P: Copy;
//~^^^ ERROR where clauses are not allowed before const item bodies
}
fn main() {}