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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
175 B
Rust
Raw Normal View History

2023-03-30 04:49:06 -05:00
// 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() {}