]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #33514 - birkenfeld:issue-29503, r=alexcrichton
authorManish Goregaokar <manishsmail@gmail.com>
Mon, 9 May 2016 19:50:22 +0000 (12:50 -0700)
committerManish Goregaokar <manishsmail@gmail.com>
Mon, 9 May 2016 21:59:44 +0000 (14:59 -0700)
rustdoc: do not strip blanket impls in crate of origin

In `impl<T> Trait for T`, the blanket type parameters `T` were recognized as "local" and "not exported", so these impls were thrown out.

Now we check if they are generic, and keep them in that case.

Fixes: #29503

Trivial merge