about summary refs log tree commit diff
path: root/tests/ui/associated-type-bounds/implied-predicates.rs
blob: e97d7a396c4706ed07e905ff6e8b68ab46731c28 (plain)
1
2
3
4
5
6
7
8
9
//@ aux-build:implied-predicates.rs
//@ check-pass

extern crate implied_predicates;
use implied_predicates::Bar;

fn bar<B: Bar>() {}

fn main() {}