mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-26 20:21:59 +00:00
11 lines
142 B
Rust
11 lines
142 B
Rust
//@ known-bug: #139596
|
|
|
|
#![feature(min_generic_const_args)]
|
|
struct Colour;
|
|
|
|
struct Led<const C: Colour>;
|
|
|
|
fn main() {
|
|
Led::<{ Colour}>;
|
|
}
|