<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/run-pass/const-enum-tuple2.rs, branch 1.0.0-beta</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.0.0-beta</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.0.0-beta'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-03-23T21:40:26+00:00</updated>
<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>Switch to purely namespaced enums</title>
<updated>2014-11-17T15:35:51+00:00</updated>
<author>
<name>Steven Fackler</name>
<email>sfackler@gmail.com</email>
</author>
<published>2014-11-06T08:05:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3dcd2157403163789aaf21a9ab3c4d30a7c6494d'/>
<id>urn:sha1:3dcd2157403163789aaf21a9ab3c4d30a7c6494d</id>
<content type='text'>
This breaks code that referred to variant names in the same namespace as
their enum. Reexport the variants in the old location or alter code to
refer to the new locations:

```
pub enum Foo {
    A,
    B
}

fn main() {
    let a = A;
}
```
=&gt;
```
pub use self::Foo::{A, B};

pub enum Foo {
    A,
    B
}

fn main() {
    let a = A;
}
```
or
```
pub enum Foo {
    A,
    B
}

fn main() {
    let a = Foo::A;
}
```

[breaking-change]
</content>
</entry>
<entry>
<title>Use assert_eq! rather than assert! where possible</title>
<updated>2013-05-19T12:16:02+00:00</updated>
<author>
<name>Corey Richardson</name>
<email>corey@octayn.net</email>
</author>
<published>2013-05-19T02:02:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cc57ca012a1f49875e19b1b089c91928dc339979'/>
<id>urn:sha1:cc57ca012a1f49875e19b1b089c91928dc339979</id>
<content type='text'>
</content>
</entry>
<entry>
<title>librustc: Remove `fail_unless!`</title>
<updated>2013-03-29T23:39:08+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2013-03-29T01:39:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=1e91595520d0538e6003dc9186f1b0df5c25b77a'/>
<id>urn:sha1:1e91595520d0538e6003dc9186f1b0df5c25b77a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>librustc: Remove the `const` declaration form everywhere</title>
<updated>2013-03-23T05:24:35+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2013-03-22T21:00:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=85c9fc6f8f59c146c44aacb4b9abfb2c35e16089'/>
<id>urn:sha1:85c9fc6f8f59c146c44aacb4b9abfb2c35e16089</id>
<content type='text'>
</content>
</entry>
<entry>
<title>librustc: Convert all uses of `assert` over to `fail_unless!`</title>
<updated>2013-03-08T06:37:57+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2013-03-06T21:58:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d7e74b5e91b0b6b6a5613f54479d2ef9fe9c392f'/>
<id>urn:sha1:d7e74b5e91b0b6b6a5613f54479d2ef9fe9c392f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>`pub fn main` for run-pass tests that didn't have it</title>
<updated>2013-02-17T22:36:43+00:00</updated>
<author>
<name>Jed Davis</name>
<email>jld@panix.com</email>
</author>
<published>2013-02-17T22:36:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9939d88e8d76b16a3ca9f6cb567bf363af04ef66'/>
<id>urn:sha1:9939d88e8d76b16a3ca9f6cb567bf363af04ef66</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Also need to pad out "C-like" enum consts (paths as well as calls).</title>
<updated>2013-02-08T01:57:02+00:00</updated>
<author>
<name>Jed Davis</name>
<email>jld@panix.com</email>
</author>
<published>2013-01-31T00:08:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6cdc283415973c259cfbc869f8c7faed5d4f7e2a'/>
<id>urn:sha1:6cdc283415973c259cfbc869f8c7faed5d4f7e2a</id>
<content type='text'>
</content>
</entry>
</feed>
