mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 09:29:33 +00:00
7 lines
118 B
Rust
7 lines
118 B
Rust
#![feature(adt_const_params)]
|
|
|
|
use std::marker::ConstParamTy;
|
|
|
|
#[derive(Eq, PartialEq, ConstParamTy)]
|
|
pub struct Foo;
|