about summary refs log tree commit diff
path: root/src/test/ui/const-generics/raw-ptr-const-param.stderr
AgeCommit message (Collapse)AuthorLines
2020-08-12Update stderr fileskadmin-17/+0
And also fix some comments as suggested by lcnr
2020-06-19Remove the const_raw_ptr_comparison feature gate.Oliver Scherer-9/+5
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-17merge lazy_normalization_consts into const_genericsBastian Kauschke-5/+3
2020-05-09adjust testsRalf Jung-1/+2
2020-04-11rustc: Add a warning count upon completionRoccoDev-1/+1
2020-03-11Reduce special casing in the const pretty printerOliver Scherer-3/+3
2020-03-11Don't print leading zeros on hex dumps constantsOliver Scherer-6/+6
2020-03-11Deduplicate and clean up pretty printing logicOliver Scherer-5/+5
2019-11-21Point at type in `let` assignment on type errorsEsteban Küber-1/+3
2019-11-18Specific labels when referring to "expected" and "found" typesEsteban Küber-2/+2
2019-10-10Pretty print raw pointers in consts as '{pointer}'.ben-3/+3
2019-10-09Update ui testsben-2/+2
2019-10-09Gate use of raw and function pointers in const generics behindben-0/+20
const_compare_raw_pointers.