about summary refs log tree commit diff
path: root/src/test/compile-fail/pattern-ident-path-generics.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-16/+0
2015-03-15Strip all leading/trailing newlinesTamir Duberstein-1/+0
2015-01-08Update compile fail tests to use isize.Huon Wilson-1/+1
2014-08-12libsyntax: Don't strip types and lifetimes from single-segment paths inPatrick Walton-0/+17
patterns. This breaks code like: fn main() { match Some("foo") { None::<int> => {} Some(_) => {} } } Change this code to not contain a type error. For example: fn main() { match Some("foo") { None::<&str> => {} Some(_) => {} } } Closes #16353. [breaking-change]