Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions src/test/ui/const-generics/issue-103243.rs
Original file line number Diff line number Diff line change
@@ -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() {}