rust/tests/ui/higher-rank-trait-bounds/issue-95230.rs
2023-04-10 09:21:21 +02:00

12 lines
175 B
Rust

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