mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +00:00
22 lines
304 B
Plaintext
22 lines
304 B
Plaintext
// run-rustfix
|
|
#![allow(dead_code)]
|
|
trait Foo {
|
|
type Bar;
|
|
}
|
|
|
|
fn foo<T: Foo>()
|
|
where
|
|
T::Bar: std::fmt::Debug,
|
|
//~^ ERROR associated type `Baa` not found for `T`
|
|
{
|
|
}
|
|
|
|
fn bar<T>()
|
|
where
|
|
T::Bar: std::fmt::Debug, T: Foo
|
|
//~^ ERROR associated type `Baa` not found for `T`
|
|
{
|
|
}
|
|
|
|
fn main() {}
|