Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a264bff
Mark assoc tys live only if the trait is live
mu001999 Jun 18, 2024
dd557d8
Add a test demonstrating that RPITITs cant use precise capturing
compiler-errors Jun 20, 2024
594fa01
not use offset when there is not ends with brace
bvanjoi Jun 23, 2024
8cfd4b1
Unify the precedence level for PREC_POSTFIX and PREC_PAREN
dtolnay Jun 24, 2024
273447c
Rename the 2 unambiguous precedence levels to PREC_UNAMBIGUOUS
dtolnay Jun 24, 2024
a2298a6
Do not ICE when suggesting dereferencing closure arg
estebank Jun 24, 2024
6521c39
Deny use<> for RPITITs
compiler-errors Jun 20, 2024
553a690
Specify target specific linker for riscv64gc-gnu job
Hoverbear Jun 24, 2024
26677eb
don't suggest awaiting type expr patterns
SparkyPotato Jun 24, 2024
8016940
Tweak a confusing comment in `create_match_candidates`
Zalathar Jun 24, 2024
050595a
core: VaArgSafe is an unsafe trait
workingjubilee Jun 25, 2024
c2f1072
Tweak `FlatPat::new` to avoid a temporarily-invalid state
Zalathar Jun 25, 2024
f2ade37
Add `input_file` method on `LlvmFileCheck`
GuillaumeGomez Jun 25, 2024
221dd30
Migrate `run-make/llvm-ident` to `rmake.rs`
GuillaumeGomez Jun 25, 2024
c7b579a
Add missing slash in const_eval_select doc comment
cyrgani Jun 25, 2024
2155c6c
#126333 remove `PathBuf::as_mut_vec` reference at top of `PathBuf::_p…
tnuha Jun 23, 2024
b08cd69
inner truncate methods for UEFI platforms
tnuha Jun 23, 2024
7e187e8
remove references to `PathBuf::as_mut_vec` in `PathBuf::_set_extension`
tnuha Jun 23, 2024
aa46a33
`PathBuf::as_mut_vec` removed and verified for UEFI and Windows platf…
tnuha Jun 25, 2024
d30d85f
Delegation: ast lowering refactor
Bryanskiy Jun 25, 2024
77f60a9
Rollup merge of #126618 - mu001999-contrib:dead/enhance, r=pnkfelix
workingjubilee Jun 25, 2024
e1a6e3b
Rollup merge of #126746 - compiler-errors:no-rpitit, r=oli-obk
workingjubilee Jun 25, 2024
5f03101
Rollup merge of #126868 - bvanjoi:fix-126764, r=davidtwco
workingjubilee Jun 25, 2024
c7dc441
Rollup merge of #126884 - estebank:issue-125634, r=Nadrieril
workingjubilee Jun 25, 2024
457cc4e
Rollup merge of #126885 - Borgerr:rm_internal_pathbuf_asmutvec, r=wor…
workingjubilee Jun 25, 2024
ad2eba4
Rollup merge of #126893 - dtolnay:prec, r=compiler-errors
workingjubilee Jun 25, 2024
a946c76
Rollup merge of #126915 - SparkyPotato:fix-126903, r=compiler-errors
workingjubilee Jun 25, 2024
fd17aaa
Rollup merge of #126916 - ferrocene:hoverbear/riscv64gc-gnu-specify-l…
workingjubilee Jun 25, 2024
ddc7d5b
Rollup merge of #126926 - Zalathar:candidate-per-arm, r=Nadrieril
workingjubilee Jun 25, 2024
2af6c9b
Rollup merge of #126927 - workingjubilee:vaargsafe-is-unsafe, r=joboet
workingjubilee Jun 25, 2024
8e2d069
Rollup merge of #126932 - Zalathar:flat-pat, r=Nadrieril
workingjubilee Jun 25, 2024
1626e24
Rollup merge of #126941 - GuillaumeGomez:migrate-run-make-llvm-ident,…
workingjubilee Jun 25, 2024
fdc973b
Rollup merge of #126946 - cyrgani:patch-1, r=compiler-errors
workingjubilee Jun 25, 2024
c49f753
Rollup merge of #126947 - Bryanskiy:delegation-lowering-refactoring, …
workingjubilee Jun 25, 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
Add missing slash in const_eval_select doc comment
  • Loading branch information
cyrgani authored Jun 25, 2024
commit c7b579a7cb4109f8397a9700523e26269cf6a2ed
2 changes: 1 addition & 1 deletion library/core/src/intrinsics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2579,7 +2579,7 @@ extern "rust-intrinsic" {
/// fn runtime() -> i32 { 1 }
/// const fn compiletime() -> i32 { 2 }
///
// // ⚠ This code violates the required equivalence of `compiletime`
/// // ⚠ This code violates the required equivalence of `compiletime`
/// // and `runtime`.
/// const_eval_select((), compiletime, runtime)
/// }
Expand Down