]> git.proxmox.com Git - rustc.git/blob - tests/ui/privacy/private-bounds-locally-allowed.rs
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / privacy / private-bounds-locally-allowed.rs
1 // check-pass
2 // compile-flags: --crate-type=lib
3
4 #[allow(private_bounds)]
5 pub trait Foo: FooImpl {}
6
7 trait FooImpl {}