diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-01-14 09:07:15 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-01-14 09:07:15 +0000 |
commit | 39167b97d8a62adadecc9b67caac65ec556768cf (patch) | |
tree | f3a1c700b36ddc26bb9d189de3d03c84a93e9251 /xtask | |
parent | 6835f2e37c8331ef54d4839a31df195d7dbbeee8 (diff) | |
parent | 3d6480bc3103f7238b1b0e020518e8aa72af3156 (diff) |
Merge #7260
7260: Render Fn* trait objects and impl types as rust does r=matklad a=Veykril
Also fixes raw ptr impl types being rendered ambiguously with multiple predicates.
This moves out the `FamousDefs::Fixture` into its own file as well, cause I figured it is big enough to get its own file at this point + we also get highlighting this way when editing it.
Fixes #3012
Co-authored-by: Lukas Wirth <[email protected]>
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/tests/tidy.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/tests/tidy.rs b/xtask/tests/tidy.rs index a957e36af..6abad189a 100644 --- a/xtask/tests/tidy.rs +++ b/xtask/tests/tidy.rs | |||
@@ -324,7 +324,7 @@ impl TidyDocs { | |||
324 | } | 324 | } |
325 | 325 | ||
326 | fn is_exclude_file(d: &Path) -> bool { | 326 | fn is_exclude_file(d: &Path) -> bool { |
327 | let file_names = ["tests.rs"]; | 327 | let file_names = ["tests.rs", "famous_defs_fixture.rs"]; |
328 | 328 | ||
329 | d.file_name() | 329 | d.file_name() |
330 | .unwrap_or_default() | 330 | .unwrap_or_default() |