mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:36:05 +01:00
59e339f766
Co-authored-by: Boxy UwU <rust@boxyuwu.dev> Co-authored-by: León Orell Valerian Liehr <me@fmease.dev>
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;
|