rust/tests/ui/issues/issue-44247.rs
2023-01-11 09:32:08 +00:00

20 lines
228 B
Rust

// check-pass
#![allow(dead_code)]
trait T {
type X;
const X: Self::X;
}
fn foo<X: T>() {
let _: X::X = X::X;
}
trait S {
const X: Self::X;
type X;
}
fn bar<X: S>() {
let _: X::X = X::X;
}
fn main() {}