mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 19:58:32 +00:00
16 lines
236 B
Rust
16 lines
236 B
Rust
![]() |
//@ known-bug: #133808
|
||
|
|
||
|
#![feature(generic_const_exprs, transmutability)]
|
||
|
|
||
|
mod assert {
|
||
|
use std::mem::TransmuteFrom;
|
||
|
|
||
|
pub fn is_transmutable<Src, Dst>()
|
||
|
where
|
||
|
Dst: TransmuteFrom<Src>,
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub fn main() {}
|