summary refs log tree commit diff
path: root/src/test/ui/consts/ptr_comparisons.rs
AgeCommit message (Collapse)AuthorLines
2021-11-06Stabilize `const_raw_ptr_deref` for `*const T`Jacob Pratt-1/+0
This stabilizes dereferencing immutable raw pointers in const contexts. It does not stabilize `*mut T` dereferencing. This is placed behind the `const_raw_mut_ptr_deref` feature gate.
2021-10-04Stabilize `const_panic`Jacob Pratt-1/+0
2021-07-15tweak pointer out-of-bounds error messageRalf Jung-1/+1
2021-07-14adjust testsRalf Jung-4/+4
2021-06-18bless youRalf Jung-2/+2
2021-05-15get rid of a bunch of unnecessary NOTE in const testsRalf Jung-10/+2
2021-02-05fix ui tests referencing pointer-to-integer cast error messageJeffrey Griffin-2/+2
2021-02-03make const_err a future incompat lintRalf Jung-0/+6
2021-01-29rename raw_const/mut -> const/mut_addr_of, and stabilize themRalf Jung-3/+2
2021-01-04Keep an unoptimized duplicate of `const fn` aroundoli-0/+1
This allows CTFE to reliably detect UB, as otherwise optimizations may hide UB.
2020-08-17Make a test platform independentOliver Scherer-0/+4
2020-08-11Make `<*const T>::is_null` const fnOliver Scherer-0/+74