summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0771.stderr
AgeCommit message (Collapse)AuthorLines
2020-12-26update testsBastian Kauschke-1/+0
2020-10-17Suggest minimal subset features in `incomplete_features` lintYuki Okushi-0/+1
2020-07-19disallow non-static lifetimes in const genericsGabriel Smith-0/+20
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