rust/tests/ui/higher-ranked/trait-bounds/issue-95230.rs
2023-05-30 13:04:25 +02:00

12 lines
178 B
Rust

// revisions: old next
//[next] compile-flags: -Ztrait-solver=next
//[old] check-pass
//[next] known-bug: #109764
pub struct Bar
where
for<'a> &'a mut Self:;
fn main() {}