Skip to content

Commit

Permalink
Add UI test for #92292
Browse files Browse the repository at this point in the history
Closes #92292
  • Loading branch information
weirane committed Dec 30, 2021
1 parent 78fd0f6 commit 12b59b4
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/test/ui/traits/issue-92292.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// check-pass

use std::marker::PhantomData;

pub struct MyGenericType<T> {
_marker: PhantomData<*const T>,
}

pub struct MyNonGenericType;

impl<T> From<MyGenericType<T>> for MyNonGenericType {
fn from(_: MyGenericType<T>) -> Self {
todo!()
}
}

pub trait MyTrait {
const MY_CONSTANT: i32;
}

impl<T> MyTrait for MyGenericType<T>
where
Self: Into<MyNonGenericType>,
{
const MY_CONSTANT: i32 = 1;
}

impl<T> MyGenericType<T> {
const MY_OTHER_CONSTANT: i32 = <MyGenericType<T> as MyTrait>::MY_CONSTANT;
}

fn main() {}

0 comments on commit 12b59b4

Please sign in to comment.