forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#117531 - fmease:rustdoc-effects-properly-el…
…ide-x-crate-host-args, r=GuillaumeGomez rustdoc: properly elide cross-crate host effect args Fixes FIXMEs introduced in rust-lang#116670.
- Loading branch information
Showing
7 changed files
with
50 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
tests/rustdoc/inline_cross/auxiliary/const-effect-param.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#![feature(effects, const_trait_impl)] | ||
|
||
#[const_trait] | ||
pub trait Resource {} | ||
|
||
pub const fn load<R: ~const Resource>() -> i32 { | ||
0 | ||
} | ||
|
||
pub const fn lock<R: Resource>() {} | ||
|
||
#[allow(non_upper_case_globals)] | ||
pub trait Clash<const host: u64> {} | ||
|
||
#[allow(non_upper_case_globals)] | ||
pub const fn clash<T: Clash<host>, const host: u64>() {} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Regression test for issue #116629. | ||
// Check that we don't render host effect parameters & arguments. | ||
|
||
// aux-crate:const_effect_param=const-effect-param.rs | ||
// edition: 2021 | ||
#![crate_name = "user"] | ||
|
||
// Don't render the host param on `load` and the host arg `host` passed to `Resource`. | ||
// @has user/fn.load.html | ||
// @has - '//pre[@class="rust item-decl"]' "pub const fn load<R>() -> i32\ | ||
// where \ | ||
// R: Resource" | ||
pub use const_effect_param::load; | ||
|
||
// Don't render the host arg `true` passed to `Resource`. | ||
// @has user/fn.lock.html | ||
// @has - '//pre[@class="rust item-decl"]' "pub const fn lock<R>()\ | ||
// where \ | ||
// R: Resource" | ||
pub use const_effect_param::lock; | ||
|
||
// Regression test for an issue introduced in PR #116670. | ||
// Don't hide the const param `host` since it actually isn't the host effect param. | ||
// @has user/fn.clash.html | ||
// @has - '//pre[@class="rust item-decl"]' \ | ||
// "pub const fn clash<T, const host: u64>()\ | ||
// where \ | ||
// T: Clash<host>" | ||
pub use const_effect_param::clash; |
This file was deleted.
Oops, something went wrong.