blob: 11468040ee53027213cb3f63f55ccd1f529ccc72 [file] [log] [blame]
// run-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() {
}