about summary refs log tree commit diff
path: root/src/test/run-pass/utf8_idents.rs
AgeCommit message (Collapse)AuthorLines
2019-07-27tests: Move run-pass tests with naming conflicts to uiVadim Petrochenkov-41/+0
2019-07-27tests: Add missing run-pass annotationsVadim Petrochenkov-0/+1
2018-12-25Remove licensesMark Rousskov-9/+0
2018-09-21Allow various lints as part of ui-ifying `src/test/run-pass` suite.Felix S. Klock II-0/+1
2015-04-21test: Fix fallout in testsAlex Crichton-2/+0
2015-04-21Model lexer: Fix remaining issuesPiotr Czarnecki-1/+0
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-1/+1
Now that support has been removed, all lingering use cases are renamed.
2015-02-18Update suffixes en masse in tests using `perl -p -i -e`Niko Matsakis-1/+1
2015-01-30Remove all `i` suffixesTobias Bucher-12/+12
2014-11-13Remove Signed trait and add SignedInt traitBrendan Zabarauskas-1/+2
The methods have been moved into Float and SignedInt
2014-11-13Deprecate Signed method wrappersBrendan Zabarauskas-3/+1
2014-07-21Add a ton of ignore-lexer-testCorey Richardson-0/+2
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-15/+15
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]
2014-04-14Use new attribute syntax in python files in src/etc too (#13478)Manish Goregaokar-1/+1
2014-04-06Remove check-fast. Closes #4193, #8844, #6330, #7416Brian Anderson-1/+0
2014-02-11Change `xfail` directives in compiletests to `ignore`, closes #11363Florian Hahn-2/+2
2013-11-23Put non-ascii identifiers behind a feature gate.Huon Wilson-0/+4
cf. https://mail.mozilla.org/pipermail/rust-dev/2013-November/006920.html
2013-07-08 Replaces the free-standing functions in f32, &c.Jens Nockert-2/+2
The free-standing functions in f32, f64, i8, i16, i32, i64, u8, u16, u32, u64, float, int, and uint are replaced with generic functions in num instead. If you were previously using any of those functions, just replace them with the corresponding function with the same name in num. Note: If you were using a function that corresponds to an operator, use the operator instead.
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-0/+2
2013-05-19Use assert_eq! rather than assert! where possibleCorey Richardson-5/+5
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-6/+6
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-6/+6
2013-02-01check-fast fallout from removing export, r=burningtreeGraydon Hoare-1/+1
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-08-01Convert ret to returnBrian Anderson-1/+1
2012-07-24Fix test floating point comparison to tolerate imprecise FPUs.Elliott Slaughter-1/+2
2011-12-29Add support in lexer for utf8 identifiers. No NFKC logic in char yet.Graydon Hoare-0/+34