rust/tests/ui/higher-rank-trait-bounds/issue-95230.rs
2023-01-11 09:32:08 +00:00

8 lines
77 B
Rust

// check-pass
pub struct Bar
where
for<'a> &'a mut Self:;
fn main() {}