about summary refs log tree commit diff
path: root/src/test/run-pass/try-operator-custom.rs
AgeCommit message (Collapse)AuthorLines
2019-07-27tests: Move run-pass tests without naming conflicts to uiVadim Petrochenkov-63/+0
2019-07-27tests: Add missing run-pass annotationsVadim Petrochenkov-0/+2
2018-12-25Remove licensesMark Rousskov-10/+0
2017-05-25Lower `?` to `Try` instead of `Carrier`Scott McMurray-10/+8
The easy parts of RFC 1859. (Just the trait and the lowering, none of the error message improvements nor the insta-stable impl for Option.)
2016-08-18Use a Carrier trait with the `?` operatorNick Cameron-0/+73
Allows use with `Option` and custom `Result`-like types.