(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
bounds.rs
// { dg-options "-fsyntax-only" }
trait Foo {
    type Bar;
}

trait Copy {}

fn c<F: Foo<Bar: Foo>>()
where
    F::Bar: Copy,
{
}