about summary refs log tree commit diff
path: root/src/test/run-pass/block-expr-precedence.rs
AgeCommit message (Collapse)AuthorLines
2019-07-27tests: Move run-pass tests without naming conflicts to uiVadim Petrochenkov-61/+0
2019-07-27tests: Add missing run-pass annotationsVadim Petrochenkov-0/+2
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-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.
2015-01-30Remove all `i` suffixesTobias Bucher-5/+5
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-5/+5
This breaks a fair amount of code. The typical patterns are: * `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`; * `println!("{}", 3)`: change to `println!("{}", 3i)`; * `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`. RFC #30. Closes #6023. [breaking-change]
2013-05-19Use assert_eq! rather than assert! where possibleCorey Richardson-2/+2
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-2/+2
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-2/+2
2013-02-01check-fast fallout from removing export, r=burningtreeGraydon Hoare-1/+1
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2011-09-19Un-xfail various testsBrian Anderson-1/+0
2011-09-16Require body of else-less if expressions to be a value-less blockMarijn Haverbeke-3/+3
For consistency with other constructs that could not possibly return a value (say, loops).
2011-09-15Remove maybe_protect_block kludge from pretty-printerMarijn Haverbeke-0/+1
It is no longer needed.
2011-08-19Add a comment about our single use of no-reformatBrian Anderson-0/+3
2011-08-03Disambiguate unop statements in pretty-printer. Closes #674Brian Anderson-1/+0
2011-08-02Add xfail-pretty directives to tests that don't pretty-print correctlyBrian Anderson-0/+1
Issue #789
2011-07-27Fix damage done by the pretty-printerMarijn Haverbeke-1/+1
2011-06-16Add support for marking files no-reformat.Graydon Hoare-0/+2
2011-06-14Add new testcase to show the nature of our exciting block-expr / trailing ↵Graydon Hoare-0/+51
unop interaction.