summary refs log tree commit diff
path: root/src/test/run-make/graphviz-flowgraph/f25.dot-expected.dot
AgeCommit message (Collapse)AuthorLines
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-80/+116
2014-06-29librustc: Remove the fallback to `int` for integers and `f64` forPatrick Walton-32/+32
floating point numbers for real. This will break code that looks like: let mut x = 0; while ... { x += 1; } println!("{}", x); Change that code to: let mut x = 0i; while ... { x += 1; } println!("{}", x); Closes #15201. [breaking-change]
2014-06-18Regression tests for flowgraph construction bug on ExprWhile.Felix S. Klock II-0/+123