| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-08-14 | Moved compile-fail tests to ui tests. | David Wood | -20/+0 | |
| 2017-07-07 | Fold E0613 into E0609 | boreeas | -2/+2 | |
| Resolves #42945 | ||||
| 2017-06-15 | Add E0613 | Guillaume Gomez | -2/+2 | |
| 2015-01-08 | Update compile fail tests to use isize. | Huon Wilson | -1/+1 | |
| 2014-12-03 | Remove feature gates for `if let`, `while let`, and tuple indexing | Nick Cameron | -2/+0 | |
| Closes #19469 | ||||
| 2014-09-10 | Implement tuple and tuple struct indexing | P1start | -0/+22 | |
| This allows code to access the fields of tuples and tuple structs: let x = (1i, 2i); assert_eq!(x.1, 2); struct Point(int, int); let origin = Point(0, 0); assert_eq!(origin.0, 0); assert_eq!(origin.1, 0); | ||||
