about summary refs log tree commit diff
path: root/tests/ui/privacy/private-bounds-locally-allowed.rs
blob: 956912249bf46ef650096a75c6bad710d8960792 (plain)
1
2
3
4
5
6
7
//@ check-pass
//@ compile-flags: --crate-type=lib

#[allow(private_bounds)]
pub trait Foo: FooImpl {}

trait FooImpl {}