summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/private-bounds-locally-allowed.rs
blob: 96a007a64f6306e63ae95f9a9f9556ce884a8670 (plain)
1
2
3
4
5
6
7
// check-pass
// compile-flags: --crate-type=lib

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

trait FooImpl {}