]> git.lizzy.rs Git - rust.git/commit
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)
commit433f907050432af6396a317525f60579c604b3e0
treeb35a16896654d95a6a0474c6c80f3a14e47d7cd8
parentfb382df1f8e9f7124659f4cdb02f0ab311ea02b4
parent6100b70b98ee090c9b8e7b4788e4513e64fcc3ff
Rollup merge of #33514 - birkenfeld:issue-29503, r=alexcrichton

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