mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 00:29:23 +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() {}
|