about summary refs log tree commit diff
path: root/src/test/ui/impl-trait/equality.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2018-06-07Add existential type definitonsOliver Schneider-19/+0
2018-03-26Stabilize conservative_impl_traitTaylor Cramer-1/+1
2018-02-01Add filter to detect local crates for rustc_on_unimplementedEsteban Küber-1/+1
2017-11-24Merge cfail and ui tests into ui testsOliver Schneider-1/+1
2017-04-10Explicit help message for binop type missmatchEsteban Küber-0/+72
When trying to do a binary operation with missing implementation, for example `1 + Some(2)`, provide an explicit help message: ``` note: no implementation for `{integer} + std::option::Option<{integer}>` ``` Use `rustc_on_unimplemented` for the suggestions. Move cfail test to ui.