about summary refs log tree commit diff
path: root/src/test/rustdoc/inline_local/glob-extern-no-defaults.rs
AgeCommit message (Collapse)AuthorLines
2021-12-15rustdoc: remove `--passes` and `--no-defaults`Peter Jaszkowiak-25/+0
- flags no longer function, see #44136 - adjust tests to match new behavior - removed test issue-42875 (covered regression with --no-defaults) - moved input-format to removed flags - move all removed flags to bottom - note flag removal in command help - remove DefaultPassOption enum (now redundant with `show_coverage`)
2021-01-13Update tests for extern block lintingMark Rousskov-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2016-11-14rustdoc: Fix some local inlining issuesOliver Middleton-0/+35
* Only inline public items when inlining glob imports. * Never inline while in a private module or a child of a private module. * Never inline impls. This allowed the removal of a workaround in the rendering code.