-
Notifications
You must be signed in to change notification settings - Fork 14k
fix filecheck typos in tests #148780
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
fix filecheck typos in tests #148780
Conversation
|
rustbot has assigned @Mark-Simulacrum. Use |
This comment has been minimized.
This comment has been minimized.
|
|
|
CI will be fixed in #148564 |
e0a5fef to
e611ef3
Compare
|
This PR was rebased onto a different main commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
|
The job Click to see the possible cause of the failure (guessed by this bot) |
| // CHECK-LABEL: ; deduced_param_attrs::raw_const_borrow | ||
| // CHECK-NOT: readonly |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching this. I think there should also be an extra check like in other tests, so that match is on the expected line:
| // CHECK-LABEL: ; deduced_param_attrs::raw_const_borrow | |
| // CHECK-NOT: readonly | |
| // CHECK-LABEL: ; deduced_param_attrs::raw_const_borrow | |
| // CHECK-NEXT: ; | |
| // CHECK-NOT: readonly |
Fixes few filecheck annotation typos in tests.