summaryrefslogtreecommitdiffstats
path: root/tests/ui/higher-rank-trait-bounds/issue-95230.rs
blob: 769b6a9253769a44edf9b1fdc8aa04d3feac63fe (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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() {}