summary refs log tree commit diff
path: root/src/test/run-make/graphviz-flowgraph/f25.dot-expected.dot
AgeCommit message (Collapse)AuthorLines
2015-01-31Kill more `isize`sTobias Bucher-38/+38
2015-01-13graphviz-flowgraph tests: use new `--xpretty flowgraph,unlabelled` option.Felix S. Klock II-4/+4
This makes the tests much easier to maintain; the particular details of the labels attached to exiting scopes is not worth the effort required to keep it up to date as things change in the compiler internals.
2015-01-06test fallout from isize/usizeCorey Richardson-42/+42
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