rust/tests/ui/higher-rank-trait-bounds/issue-95230.rs

8 lines
77 B
Rust
Raw Normal View History

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