about summary refs log tree commit diff
path: root/src/test/run-pass/one-tuple.rs
AgeCommit message (Collapse)AuthorLines
2019-07-27tests: Move run-pass tests without naming conflicts to uiVadim Petrochenkov-15/+0
2019-07-27tests: Add missing run-pass annotationsVadim Petrochenkov-0/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2015-04-08Remove pretty-expanded from failing testsAlex Crichton-1/+0
This commit removes pretty-expanded from all tests that wind up calling panic! one way or another now that its internals are unstable.
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.
2013-05-19Use assert_eq! rather than assert! where possibleCorey Richardson-2/+2
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-1/+0
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-2/+2
2013-03-27testsuite: more `pub fn main`Tim Chevalier-1/+1
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-2/+2
2013-02-18rustc: For one-tuples, make parsing and printing the type workTim Chevalier-0/+4
and add a test to reflect-visit-data
2013-02-17syntax: Allow 1-tuple expressionsTim Chevalier-0/+20
This is for greater uniformity (for example, macros that generate tuples). rustc already supported 1-tuple patterns, but there was no way to construct a 1-tuple term.