]> git.lizzy.rs Git - rust.git/commitdiff
auto merge of #18879 : pcwalton/rust/path-silliness, r=aturon
authorbors <bors@rust-lang.org>
Thu, 13 Nov 2014 12:27:03 +0000 (12:27 +0000)
committerbors <bors@rust-lang.org>
Thu, 13 Nov 2014 12:27:03 +0000 (12:27 +0000)
This breaks code like:

    struct Foo {
        x: int,
    }

    let f: Foo = ...;
    ... f.x::<int> ...

Change this code to not contain an unused type parameter. For example:

    struct Foo {
        x: int,
    }

    let f: Foo = ...;
    ... f.x ...

Closes #18680.

[breaking-change]

r? @aturon


Trivial merge