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;
|