<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/compile-fail/pattern-ident-path-generics.rs, branch 1.25.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.25.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.25.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-03-15T16:08:21+00:00</updated>
<entry>
<title>Strip all leading/trailing newlines</title>
<updated>2015-03-15T16:08:21+00:00</updated>
<author>
<name>Tamir Duberstein</name>
<email>tamird@gmail.com</email>
</author>
<published>2015-03-14T23:29:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d51047ded072b412ec18a6f78c1fb80835a477f5'/>
<id>urn:sha1:d51047ded072b412ec18a6f78c1fb80835a477f5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update compile fail tests to use isize.</title>
<updated>2015-01-08T16:02:24+00:00</updated>
<author>
<name>Huon Wilson</name>
<email>dbau.pp+github@gmail.com</email>
</author>
<published>2015-01-08T10:54:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0c70ce1424f380360dcc8d857c68d2df1a27b6fd'/>
<id>urn:sha1:0c70ce1424f380360dcc8d857c68d2df1a27b6fd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libsyntax: Don't strip types and lifetimes from single-segment paths in</title>
<updated>2014-08-12T17:33:16+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2014-08-12T17:33:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=857ba988f189c9a2ebc7d30b1b7b6ec018908aa6'/>
<id>urn:sha1:857ba988f189c9a2ebc7d30b1b7b6ec018908aa6</id>
<content type='text'>
patterns.

This breaks code like:

    fn main() {
        match Some("foo") {
            None::&lt;int&gt; =&gt; {}
            Some(_) =&gt; {}
        }
    }

Change this code to not contain a type error. For example:

    fn main() {
        match Some("foo") {
            None::&lt;&amp;str&gt; =&gt; {}
            Some(_) =&gt; {}
        }
    }

Closes #16353.

[breaking-change]
</content>
</entry>
</feed>
