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

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
80408e0
port symlinked-extern to rmake
Oneirical May 28, 2024
59acd23
port symlinked-rlib to rmake
Oneirical May 28, 2024
2ac5faa
port symlinked-libraries to rmake
Oneirical May 28, 2024
63bdcaa
add is_none_or
RalfJung Jun 12, 2024
4c208ac
use is_none_or in some places in the compiler
RalfJung Jun 12, 2024
ffe5439
Add test for walking order dependent opaque type behaviour
oli-obk Jun 12, 2024
6d93626
docs(rustc): Help users to check-cfg Cargo docs
epage Jun 12, 2024
4b809b9
Move MatchAgainstFreshVars to old solver
compiler-errors Jun 12, 2024
9232bd2
docs(rustc): Link unexpected_cfgs to the Cargo.toml docs
epage Jun 12, 2024
e171e64
docs(rustc): De-emphasize --cfg/--check-cfg note
epage Jun 12, 2024
52b2c88
Walk into alias-eq nested goals even if normalization fails
compiler-errors May 28, 2024
b0c1474
better error message for normalizes-to ambiguities
compiler-errors Jun 4, 2024
44040a0
Also passthrough for projection clauses
compiler-errors Jun 4, 2024
46391b7
Make `try_from_target_usize` method public
artemagvanian Jun 12, 2024
c453c82
Harmonize use of leaf and root obligation in trait error reporting
compiler-errors Jun 8, 2024
93d83c8
Bless and add ICE regression test
compiler-errors Jun 8, 2024
f8d12d9
Stop passing both trait pred and trait ref
compiler-errors Jun 7, 2024
2c0348a
Stop passing traitref/traitpredicate by ref
compiler-errors Jun 7, 2024
d1fa19c
Add urls to rust lang reference
sancho20021 Jun 12, 2024
ae24ebe
Rebase fallout
compiler-errors Jun 13, 2024
fb662f2
safe transmute: support `Variants::Single` enums
jswrenn Jun 12, 2024
1a6b1a1
Rollup merge of #125674 - Oneirical:another-day-another-test, r=jieyouxu
workingjubilee Jun 13, 2024
8719cc2
Rollup merge of #125688 - compiler-errors:alias-reporting, r=lcnr
workingjubilee Jun 13, 2024
25c55c5
Rollup merge of #126142 - compiler-errors:trait-ref-split, r=jackh726
workingjubilee Jun 13, 2024
573ad2b
Rollup merge of #126303 - sancho20021:patch-1, r=compiler-errors
workingjubilee Jun 13, 2024
f5af7ee
Rollup merge of #126328 - RalfJung:is_none_or, r=workingjubilee
workingjubilee Jun 13, 2024
100588f
Rollup merge of #126337 - oli-obk:nested_gat_opaque, r=lcnr
workingjubilee Jun 13, 2024
f6cc226
Rollup merge of #126353 - compiler-errors:move-match, r=lcnr
workingjubilee Jun 13, 2024
9d946a3
Rollup merge of #126356 - epage:check-cfg, r=Urgau
workingjubilee Jun 13, 2024
d33ec8e
Rollup merge of #126358 - jswrenn:fix-125811, r=compiler-errors
workingjubilee Jun 13, 2024
3b10998
Rollup merge of #126362 - artemagvanian:patch-1, r=celinval
workingjubilee Jun 13, 2024
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
docs(rustc): De-emphasize --cfg/--check-cfg note
At the suggestion of @Urgau
  • Loading branch information
epage committed Jun 12, 2024
commit e171e648ea0dfd7af91c3cb8e66b53c516e910c5
6 changes: 3 additions & 3 deletions src/doc/rustc/src/check-cfg.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ development process.
In order to accomplish that goal, `rustc` accepts the `--check-cfg` flag, which specifies
whether to check conditions and how to check them.

> **Note:** No implicit expectation is added when using `--cfg`. Users are expected to
pass all expected names and values using the _check cfg specification_.

> **Note:** For interacting with this through Cargo,
see [Cargo Specifics](check-cfg/cargo-specifics.md) page.

Expand All @@ -26,6 +23,9 @@ breaking change.
To specify expected names and values, the _check cfg specification_ provides the `cfg(...)`
option which enables specifying for an expected config name and it's expected values.

> **Note:** No implicit expectation is added when using `--cfg`. Users are expected to
pass all expected names and values using the _check cfg specification_.

It has this basic form:

```bash
Expand Down