<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/run-pass/while-flow-graph.rs, branch 1.0.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.0.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.0.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-03-26T19:10:22+00:00</updated>
<entry>
<title>Mass rename uint/int to usize/isize</title>
<updated>2015-03-26T19:10:22+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-03-26T00:06:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=43bfaa4a336095eb5697fb2df50909fd3c72ed14'/>
<id>urn:sha1:43bfaa4a336095eb5697fb2df50909fd3c72ed14</id>
<content type='text'>
Now that support has been removed, all lingering use cases are renamed.
</content>
</entry>
<entry>
<title>rustdoc: Replace no-pretty-expanded with pretty-expanded</title>
<updated>2015-03-23T21:40:26+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2015-03-22T20:13:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8c93a79e387f5197e8b8fe73b3d87d2b101b7c4a'/>
<id>urn:sha1:8c93a79e387f5197e8b8fe73b3d87d2b101b7c4a</id>
<content type='text'>
Now that features must be declared expanded source often does not compile.
This adds 'pretty-expanded' to a bunch of test cases that still work.
</content>
</entry>
<entry>
<title>Update suffixes en masse in tests using `perl -p -i -e`</title>
<updated>2015-02-18T14:10:10+00:00</updated>
<author>
<name>Niko Matsakis</name>
<email>niko@alum.mit.edu</email>
</author>
<published>2015-02-18T10:42:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=72eb214ee473e7fbb8fb27ba10d6e43d02bb633b'/>
<id>urn:sha1:72eb214ee473e7fbb8fb27ba10d6e43d02bb633b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>librustc: Remove the fallback to `int` for integers and `f64` for</title>
<updated>2014-06-29T18:47:58+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2014-06-27T19:30:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a5bb0a3a4574af88add700ace7aefc37172fa7a5'/>
<id>urn:sha1:a5bb0a3a4574af88add700ace7aefc37172fa7a5</id>
<content type='text'>
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]
</content>
</entry>
<entry>
<title>Fix warnings it tests</title>
<updated>2013-08-17T15:42:35+00:00</updated>
<author>
<name>Erick Tryzelaar</name>
<email>erick.tryzelaar@gmail.com</email>
</author>
<published>2013-08-17T15:37:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ad5c67685332dc0e45d459b45749e76c93270988'/>
<id>urn:sha1:ad5c67685332dc0e45d459b45749e76c93270988</id>
<content type='text'>
</content>
</entry>
<entry>
<title>check-fast fallout from removing export, r=burningtree</title>
<updated>2013-02-02T03:43:17+00:00</updated>
<author>
<name>Graydon Hoare</name>
<email>graydon@mozilla.com</email>
</author>
<published>2013-02-02T03:43:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=89c8ef792f7e7641abfac421ba1e8f90384883ec'/>
<id>urn:sha1:89c8ef792f7e7641abfac421ba1e8f90384883ec</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Reliciense makefiles and testsuite. Yup.</title>
<updated>2012-12-11T01:32:58+00:00</updated>
<author>
<name>Graydon Hoare</name>
<email>graydon@mozilla.com</email>
</author>
<published>2012-12-11T01:32:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d1affff623604de21813fd791042458ad54248e9'/>
<id>urn:sha1:d1affff623604de21813fd791042458ad54248e9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Reformat</title>
<updated>2011-08-20T18:04:00+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2011-08-19T22:16:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=518dc52f85c2efb67aaa1208c02e9a7e0bdaca49'/>
<id>urn:sha1:518dc52f85c2efb67aaa1208c02e9a7e0bdaca49</id>
<content type='text'>
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
</content>
</entry>
<entry>
<title>Reformat for new syntax</title>
<updated>2011-07-27T13:54:33+00:00</updated>
<author>
<name>Marijn Haverbeke</name>
<email>marijnh@gmail.com</email>
</author>
<published>2011-07-27T12:19:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=df7f21db093b0f206048b18e977161f91b7c28f1'/>
<id>urn:sha1:df7f21db093b0f206048b18e977161f91b7c28f1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Reformat source tree (minus a couple tests that are still grumpy).</title>
<updated>2011-06-15T18:19:50+00:00</updated>
<author>
<name>Graydon Hoare</name>
<email>graydon@mozilla.com</email>
</author>
<published>2011-06-15T18:19:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ce72993488af962892ea3991aef7b9f6e72e40f0'/>
<id>urn:sha1:ce72993488af962892ea3991aef7b9f6e72e40f0</id>
<content type='text'>
</content>
</entry>
</feed>
