about summary refs log tree commit diff
path: root/src/test/run-pass/const-enum-tuple.rs
AgeCommit message (Collapse)AuthorLines
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-2/+2
2013-03-22librustc: Remove the `const` declaration form everywherePatrick Walton-1/+1
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-2/+2
2013-02-17`pub fn main` for run-pass tests that didn't have itJed Davis-1/+1
2013-02-07Pad out enum consts to the expected size; makes enums in tuples work.Jed Davis-0/+18
This is wasted space if the const is just an enum, but optimizing that case without breaking everything else is an issue that can be addressed separately.