about summary refs log tree commit diff
path: root/src/test/compile-fail/method-missing-call.rs
AgeCommit message (Collapse)AuthorLines
2017-12-14Move compile-fail tests with NOTE/HELP annotations to UIVadim Petrochenkov-42/+0
2015-03-15Strip all leading/trailing newlinesTamir Duberstein-1/+0
2015-01-31Kill more `isize`sTobias Bucher-1/+1
2015-01-08Update compile-fail tests to use is/us, not i/u.Huon Wilson-1/+1
2015-01-08Update compile fail tests to use isize.Huon Wilson-4/+4
2014-11-02Convert some notes to help messagesP1start-2/+2
Closes #18126.
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-1/+1
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-06-16rustc: Improve span for error about using a method as a field.Kevin Butler-2/+11
libsyntax: ExprField now contains a SpannedIdent rather than Ident. [breaking-change]
2014-03-16Asked if missing (), then asks about an anonymous function. Also added test.Davis Silverman-0/+34