mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
12 lines
175 B
Rust
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() {}
|