rustc/tests/ui/resolve/issue-55673.rs
2024-06-04 21:09:03 +02:00

22 lines
297 B
Rust

// run-rustfix
#![allow(dead_code)]
trait Foo {
type Bar;
}
fn foo<T: Foo>()
where
T::Baa: std::fmt::Debug,
//~^ ERROR associated type `Baa` not found for `T`
{
}
fn bar<T>()
where
T::Baa: std::fmt::Debug,
//~^ ERROR associated type `Baa` not found for `T`
{
}
fn main() {}