about summary refs log tree commit diff
path: root/src/test/ui/const-generics/raw-ptr-const-param.rs
AgeCommit message (Collapse)AuthorLines
2021-08-30`feature(const_param_types)` -> `feature(adt_const_params)`lcnr-1/+1
2021-08-30`feature(const_generics)` -> `feature(const_param_types)`lcnr-1/+1
2020-12-26update testsBastian Kauschke-1/+0
2020-08-12Add a bunch of revisionskadmin-2/+5
This adds a bunch of revisions to const-generic tests
2020-06-19Remove the const_raw_ptr_comparison feature gate.Oliver Scherer-3/+3
We can never supply a meaningful implementation of this. Instead, the follow up commits will create two intrinsics that approximate comparisons: * `ptr_maybe_eq` * `ptr_maybe_ne` The fact that `ptr_maybe_eq(a, b)` is not necessarily the same value as `!ptr_maybe_ne(a, b)` is a symptom of this entire problem.
2020-05-09adjust testsRalf Jung-1/+1
2020-03-11Don't print leading zeros on hex dumps constantsOliver Scherer-5/+2
2020-03-11Deduplicate and clean up pretty printing logicOliver Scherer-0/+3
2019-10-09Refactor pretty print const to use a big match statementben-1/+1
2019-10-09Gate use of raw and function pointers in const generics behindben-0/+9
const_compare_raw_pointers.