diff options
| author | León Orell Valerian Liehr <me@fmease.dev> | 2023-11-03 01:44:09 +0100 |
|---|---|---|
| committer | León Orell Valerian Liehr <me@fmease.dev> | 2023-11-05 00:56:54 +0100 |
| commit | 1dcdf839273d6de6ae7105aa23d99cb44e38a38c (patch) | |
| tree | f643608c2ae3df3bb2fe3cab4acd6f1af964ae4f /tests/rustdoc/inline_cross/auxiliary/const-effect-param.rs | |
| parent | ffb7ed9fa420e9bcd98d84b431b2009445b7b967 (diff) | |
| download | rust-1dcdf839273d6de6ae7105aa23d99cb44e38a38c.tar.gz rust-1dcdf839273d6de6ae7105aa23d99cb44e38a38c.zip | |
rustdoc: properly elide cross-crate host effect args
Diffstat (limited to 'tests/rustdoc/inline_cross/auxiliary/const-effect-param.rs')
| -rw-r--r-- | tests/rustdoc/inline_cross/auxiliary/const-effect-param.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/rustdoc/inline_cross/auxiliary/const-effect-param.rs b/tests/rustdoc/inline_cross/auxiliary/const-effect-param.rs new file mode 100644 index 00000000000..b0c21ffaeb9 --- /dev/null +++ b/tests/rustdoc/inline_cross/auxiliary/const-effect-param.rs @@ -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>() {} |
