Skip to content
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

Rollup of 9 pull requests #109019

Merged
merged 29 commits into from
Mar 11, 2023
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
fc84777
Stabilize `nonzero_min_max`
c410-f3r Jan 9, 2023
d1b7681
Remove unstable feature
c410-f3r Jan 9, 2023
41856b0
allow negative numeric literals in `concat!`
Ezrashaw Jan 14, 2023
832b33e
Force parentheses around `match` expression in binary expression
bwmf2 Feb 26, 2023
cdeb0e3
Fix UI test
bwmf2 Feb 28, 2023
219195f
Add UI test
bwmf2 Feb 28, 2023
9ac0da8
Make `unused_allocation` lint warn against `Box::new`
WaffleLapkin Nov 13, 2022
ff5f784
Add a test for `unused_allocation` lint
WaffleLapkin Nov 13, 2022
6f3c25a
Remove some useless `#[allow()]`s in tests
WaffleLapkin Nov 13, 2022
214e65c
Add unuseless `#[allow(unused_allocation)]`
WaffleLapkin Nov 13, 2022
7f5338a
fix an alloc test
WaffleLapkin Nov 13, 2022
a90abd6
Remove `feature(box_syntax)` from unused allocation list test
WaffleLapkin Mar 3, 2023
1ccb1de
Place size limits on query keys and values
Zoxc Mar 3, 2023
de2e16c
Prevent the `start_bx` basic block in codegen from having two `Builde…
823984418 Mar 4, 2023
b7e2b04
Querify registered_tools.
cjgillot Mar 6, 2023
c90fc10
Querify early_lint_checks.
cjgillot Mar 6, 2023
620544e
issue-108706-fix
noamtashma Mar 3, 2023
871b4fe
Add a comment about drop(start_bx)
823984418 Mar 8, 2023
67698aa
Move some solver stuff to middle
compiler-errors Feb 15, 2023
d21e4d8
Actually cache goals
compiler-errors Feb 24, 2023
fbc121f
Rollup merge of #104363 - WaffleLapkin:bonk_box_new, r=Nilstrieb
matthiaskrgr Mar 11, 2023
ffc0b8a
Rollup merge of #106633 - c410-f3r:stabilize-nonzero_bits, r=dtolnay
matthiaskrgr Mar 11, 2023
d47d4ad
Rollup merge of #106844 - Ezrashaw:concat-negative-int-lit, r=dtolnay
matthiaskrgr Mar 11, 2023
244ec84
Rollup merge of #108071 - compiler-errors:new-solver-caching, r=lcnr
matthiaskrgr Mar 11, 2023
9c38ae5
Rollup merge of #108542 - bwmf2:expanded, r=wesleywiser
matthiaskrgr Mar 11, 2023
1909d93
Rollup merge of #108690 - Zoxc:query-size-limits, r=cjgillot
matthiaskrgr Mar 11, 2023
5adaa71
Rollup merge of #108708 - noamtashma:issue-108706-fix, r=m-ou-se
matthiaskrgr Mar 11, 2023
d7372a1
Rollup merge of #108739 - 823984418:patch-1, r=cjgillot
matthiaskrgr Mar 11, 2023
df50001
Rollup merge of #108806 - cjgillot:query-lints, r=davidtwco
matthiaskrgr Mar 11, 2023
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
Prev Previous commit
Next Next commit
Fix UI test
  • Loading branch information
bwmf2 committed Mar 2, 2023
commit cdeb0e3e02cc70ca4efb41fa67b55b5722a81121
Original file line number Diff line number Diff line change
@@ -164,7 +164,7 @@ fn main() {
// mac call

// match
[ match elem { _ => elem } == 3 ] => "Assertion failed: match elem { _ => elem, } == 3"
[ match elem { _ => elem } == 3 ] => "Assertion failed: (match elem { _ => elem, }) == 3"

// ret
[ (|| { return elem; })() == 3 ] => "Assertion failed: (|| { return elem; })() == 3"