rust/tests/ui/issues/issue-18173.rs
2024-02-07 10:42:01 +08:00

13 lines
197 B
Rust

// check-pass
trait Foo {
type T;
}
// should be able to use a trait with an associated type without specifying it as an argument
trait Bar<F: Foo> {
fn bar(foo: &F);
}
pub fn main() {
}