mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
22 lines
298 B
Rust
22 lines
298 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() {}
|