diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:03:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:03:36 +0000 |
commit | 17d40c6057c88f4c432b0d7bac88e1b84cb7e67f (patch) | |
tree | 3f66c4a5918660bb8a758ab6cda5ff8ee4f6cdcd /src/test/ui/const-generics/issue-103243.rs | |
parent | Adding upstream version 1.64.0+dfsg1. (diff) | |
download | rustc-upstream/1.65.0+dfsg1.tar.xz rustc-upstream/1.65.0+dfsg1.zip |
Adding upstream version 1.65.0+dfsg1.upstream/1.65.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/const-generics/issue-103243.rs')
-rw-r--r-- | src/test/ui/const-generics/issue-103243.rs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/test/ui/const-generics/issue-103243.rs b/src/test/ui/const-generics/issue-103243.rs new file mode 100644 index 000000000..78c73522b --- /dev/null +++ b/src/test/ui/const-generics/issue-103243.rs @@ -0,0 +1,37 @@ +// build-pass + +pub trait CSpace<const N: usize>: Sized { + type Traj; +} + +pub trait FullTrajectory<T, S1, const N: usize> {} + +pub struct Const<const R: usize>; + +pub trait Obstacle<CS, const N: usize> +where + CS: CSpace<N>, +{ + fn trajectory_free<FT, S1>(&self, t: &FT) + where + FT: FullTrajectory<CS::Traj, S1, N>; +} + +// ----- + +const N: usize = 4; + +struct ObstacleSpace2df32; + +impl<CS> Obstacle<CS, N> for ObstacleSpace2df32 +where + CS: CSpace<N>, +{ + fn trajectory_free<TF, S1>(&self, t: &TF) + where + TF: FullTrajectory<CS::Traj, S1, N>, + { + } +} + +fn main() {} |