about summary refs log tree commit diff
path: root/tests/ui/consts
AgeCommit message (Expand)AuthorLines
2024-12-02stabilize const_{size,align}_of_valRalf Jung-5/+3
2024-12-02Allow fn pointers comparisons lint in UI testsUrgau-0/+2
2024-12-01fix ICE when promoted has layout size overflowRalf Jung-23/+115
2024-12-01Rollup merge of #133669 - RalfJung:const_swap_splitup, r=dtolnayMatthias Krüger-1/+1
2024-12-01Adjust HostEffect error spans correctly to point at argsMichael Goulet-14/+77
2024-11-30add test for bytewise ptr::swap of a pointerRalf Jung-1/+1
2024-11-28always create `DefId`s when lowering anon-constslcnr-3/+3
2024-11-27Rollup merge of #133518 - compiler-errors:structurally-resolve-never, r=lcnrMatthias Krüger-1/+10
2024-11-27Bless tests due to extra error reporting due to normalizing types that are no...Michael Goulet-1/+10
2024-11-26Rollup merge of #133402 - compiler-errors:drop-and-destruct, r=lcnrMichael Goulet-147/+34
2024-11-26Auto merge of #133505 - compiler-errors:rollup-xjp8hdi, r=compiler-errorsbors-5/+36
2024-11-26Rollup merge of #133367 - compiler-errors:array-len-mismatch, r=BoxyUwUMichael Goulet-5/+36
2024-11-26tests: remove `//@ pretty-expanded` usages许杰友 Jieyou Xu (Joe)-8/+0
2024-11-25Constify Drop and DestructMichael Goulet-147/+34
2024-11-24Rollup merge of #133389 - eduardosm:stabilize-const_float_methods, r=RalfJungMatthias Krüger-1/+0
2024-11-24Simplify array length mismatch error reportingMichael Goulet-5/+36
2024-11-23Stabilize `const_float_methods`Eduardo Sánchez Muñoz-1/+0
2024-11-23Update tests for new TRPL chapter orderChris Krycho-10/+10
2024-11-22Check drop is trivial before checking ty needs dropMichael Goulet-108/+38
2024-11-22Deduplicate checking drop terminatorMichael Goulet-7/+7
2024-11-22Gate const drop behind const_destruct feature, and fix const_precise_live_dro...Michael Goulet-11/+118
2024-11-22Implement ~const Destruct in new solverMichael Goulet-18/+7
2024-11-22Get rid of HIR const checkerMichael Goulet-156/+54
2024-11-20Rollup merge of #132708 - estebank:const-as-binding, r=NadrierilMatthias Krüger-27/+85
2024-11-19Auto merge of #133164 - RalfJung:promoted-oom, r=jieyouxubors-0/+27
2024-11-18interpret: do not ICE when a promoted fails with OOMRalf Jung-0/+27
2024-11-18rename rustc_const_stable_intrinsic -> rustc_intrinsic_const_stable_indirectRalf Jung-1/+1
2024-11-17Make suggestion verboseEsteban Küber-16/+20
2024-11-17Unify expanded constants and named constants in `PatKind`Esteban Küber-12/+60
2024-11-17Use `item_name` instead of a span snippet when talking about const patternEsteban Küber-3/+3
2024-11-17Point at `const` definition when used instead of a binding in a `let` statementEsteban Küber-9/+15
2024-11-17Rollup merge of #133116 - RalfJung:const-null-ptr, r=dtolnay许杰友 Jieyou Xu (Joe)-3/+1
2024-11-16stabilize const_ptr_is_nullRalf Jung-3/+1
2024-11-16Rollup merge of #132449 - RalfJung:is_val_statically_known, r=compiler-errorsMatthias Krüger-1/+1
2024-11-13check_consts: fix error requesting feature gate when that gate is not actuall...Ralf Jung-1/+1
2024-11-12allow rustc_private feature in force-unstable-if-unmarked cratesRalf Jung-5/+3
2024-11-10ensure that all publicly reachable const fn have const stability infoRalf Jung-28/+28
2024-11-10honor rustc_const_stable_indirect in non-staged_api crate with -Zforce-unstab...Ralf Jung-0/+121
2024-11-08mark is_val_statically_known intrinsic as stably const-callableRalf Jung-1/+1
2024-11-07core: move intrinsics.rs into intrinsics folderRalf Jung-2/+2
2024-11-05Rollup merge of #132571 - RalfJung:const_eval_select_macro, r=oli-obkMatthias Krüger-2/+2
2024-11-05add const_eval_select macro to reduce redundancyRalf Jung-2/+2
2024-11-04when an intrinsic has a const-stable fallback body, we can easily expose it o...Ralf Jung-2/+24
2024-11-04most const intrinsics don't need an explicit rustc_const_unstable any moreRalf Jung-10/+8
2024-11-04add new rustc_const_stable_intrinsic attribute for const-stable intrinsicsRalf Jung-3/+3
2024-11-04remove support for extern-block const intrinsicsRalf Jung-159/+73
2024-11-04Rollup merge of #132544 - dianne:unstable-library-feature-backticks, r=compil...Matthias Krüger-8/+8
2024-11-03use backticks instead of single quotes when reporting "use of unstable librar...dianne-8/+8
2024-11-03Rename the FIXMEs, remove a few that dont matter anymoreMichael Goulet-4/+4
2024-11-03Yeet effects featureMichael Goulet-17/+13