mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-09 01:01:34 +00:00
16 lines
280 B
Rust
16 lines
280 B
Rust
// Check for recursion involving references to trait-associated const.
|
|
|
|
trait Foo {
|
|
const BAR: u32;
|
|
}
|
|
|
|
const TRAIT_REF_BAR: u32 = <GlobalTraitRef>::BAR;
|
|
|
|
struct GlobalTraitRef;
|
|
|
|
impl Foo for GlobalTraitRef {
|
|
const BAR: u32 = TRAIT_REF_BAR; //~ ERROR E0391
|
|
}
|
|
|
|
fn main() {}
|