Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test validating successful fix #103733

Closed
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() {}