summary refs log tree commit diff
path: root/src/test/compile-fail/not-sync.rs
AgeCommit message (Collapse)AuthorLines
2018-03-14Reword E0044 and message for `!Send` typesEsteban Küber-6/+6
- Reword E0044 help. - Change error message for types that don't implement `Send`
2017-06-02Implement Sync for SyncSenderSteven Fackler-3/+1
2016-04-05improve the printing of substs and trait-refsAriel Ben-Yehuda-7/+7
2016-04-05suggest adding a where-clause when that can helpAriel Ben-Yehuda-7/+7
suggest adding a where-clause when there is an unmet trait-bound that can be satisfied if some type can implement it.
2016-03-30Fix fallout in testsJeffrey Seyfried-4/+4
2016-03-01Explicitly opt out of `Sync` for `cell` and `mpsc` typesAndrew Paseltiner-0/+34
These types were already `!Sync`, but this improves error messages when they are used in contexts that require `Sync`, aligning them with conventions used with `Rc`, among others.