mirror of https://github.com/rust-lang/rust
21 lines
473 B
Rust
21 lines
473 B
Rust
//@ check-pass
|
|
|
|
#![feature(generic_const_exprs)]
|
|
#![allow(incomplete_features)]
|
|
|
|
struct GenericStruct<const T: usize> { val: i64 }
|
|
|
|
impl<const T: usize> From<GenericStruct<T>> for GenericStruct<{T + 1}> {
|
|
fn from(other: GenericStruct<T>) -> Self {
|
|
Self { val: other.val }
|
|
}
|
|
}
|
|
|
|
impl<const T: usize> From<GenericStruct<{T + 1}>> for GenericStruct<T> {
|
|
fn from(other: GenericStruct<{T + 1}>) -> Self {
|
|
Self { val: other.val }
|
|
}
|
|
}
|
|
|
|
fn main() {}
|