Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add regression test for #95230
Signed-off-by: Yuki Okushi <[email protected]>
  • Loading branch information
JohnTitor committed Jul 18, 2022
commit 5172a2f5ce0df276525c2e7b8d09024fda6fc8cd
7 changes: 7 additions & 0 deletions src/test/ui/hrtb/issue-95230.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// check-pass

pub struct Bar
where
for<'a> &'a mut Self:;

fn main() {}