about summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0771.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-8/+0
2021-08-30`feature(const_param_types)` -> `feature(adt_const_params)`lcnr-2/+2
2021-08-30`feature(const_generics)` -> `feature(const_param_types)`lcnr-2/+2
2020-07-19disallow non-static lifetimes in const genericsGabriel Smith-0/+8
This has been put in place to patch over an ICE caused when we encounter a non-static lifetime in a const generic during borrow checking. This restriction may be relaxed in the future, but we need more discussion before then, and in the meantime we should still deal with this ICE. Fixes issue #60814