summary refs log tree commit diff
path: root/src/test/compile-fail/recursion.rs
AgeCommit message (Collapse)AuthorLines
2014-09-19Add enum variants to the type namespaceNick Cameron-2/+2
Change to resolve and update compiler and libs for uses. [breaking-change] Enum variants are now in both the value and type namespaces. This means that if you have a variant with the same name as a type in scope in a module, you will get a name clash and thus an error. The solution is to either rename the type or the variant.
2014-03-13Introduce a common recursion limit for auto-dereference and monomorphization.Eduard Burtescu-1/+1
2014-02-25test: Clean out the test suite a bitAlex Crichton-0/+34
This updates a number of ignore-test tests, and removes a few completely outdated tests due to the feature being tested no longer being supported. This brings a number of bench/shootout tests up to date so they're compiling again. I make no claims to the performance of these benchmarks, it's just nice to not have bitrotted code. Closes #2604 Closes #9407