about summary refs log tree commit diff
path: root/src/test/run-pass/unsized.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2018-09-21Allow various lints as part of ui-ifying `src/test/run-pass` suite.Felix S. Klock II-0/+2
2015-04-21Model lexer: Fix remaining issuesPiotr Czarnecki-2/+0
2015-04-02Fallout in testsNiko Matsakis-10/+10
2015-03-23rustdoc: Replace no-pretty-expanded with pretty-expandedBrian Anderson-0/+2
Now that features must be declared expanded source often does not compile. This adds 'pretty-expanded' to a bunch of test cases that still work.
2015-03-08test: Test the lexer now that #15879 is closedRicho Healey-2/+0
2015-02-18Fallout: tests. As tests frequently elide things, lots of changesNiko Matsakis-11/+13
here. Some of this may have been poorly rebased, though I tried to be careful and preserve the spirit of the test.
2015-01-05More test fixes!Alex Crichton-3/+3
2014-12-26Update tests to use `?Sized`Nick Cameron-14/+15
2014-09-09Handle `Sized?` in `type` items.Nick Cameron-0/+1
Resolves bounds for `type` and adds the warning for 'unbounds' (? bounds) that we have for bounds. Closes #16888
2014-07-21Add a ton of ignore-lexer-testCorey Richardson-0/+2
2014-07-08Change DST syntax: type -> Sized?Nick Cameron-13/+13
closes #13367 [breaking-change] Use `Sized?` to indicate a dynamically sized type parameter or trait (used to be `type`). E.g., ``` trait Tr for Sized? {} fn foo<Sized? X: Share>(x: X) {} ```
2014-04-23Check for unsized types in enums.Nick Cameron-0/+1
And allow the last field of a struct or variant to be unsized.
2014-04-23Support unsized types with the `type` keywordNick Cameron-0/+26