summary refs log tree commit diff
path: root/src/test/compile-fail/object-does-not-impl-trait.rs
AgeCommit message (Collapse)AuthorLines
2015-04-21test: Fix fallout in testsAlex Crichton-3/+1
2015-02-18Fallout: tests. As tests frequently elide things, lots of changesNiko Matsakis-1/+2
here. Some of this may have been poorly rebased, though I tried to be careful and preserve the spirit of the test.
2014-09-15Update error messages in compile-fail testsNiko Matsakis-2/+2
2014-08-17librustc: Allow trait bounds on structures and enumerations, and checkPatrick Walton-0/+1
them during kind checking. This implements RFC #11. Closes #15759.
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-2/+3
for `~str`/`~[]`. Note that `~self` still remains, since I forgot to add support for `Box<self>` before the snapshot. How to update your code: * Instead of `~EXPR`, you should write `box EXPR`. * Instead of `~TYPE`, you should write `Box<Type>`. * Instead of `~PATTERN`, you should write `box PATTERN`. [breaking-change]
2014-02-07Removed @self and @Trait.Eduard Burtescu-4/+2
2013-10-23register snapshotsDaniel Micay-0/+2
2013-03-06Make object types not implement associated trait. Fixes #5087.Niko Matsakis-0/+17