Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
crashes
/
139596.rs
blob: 590cfddf83e29c1a72bdbacf24ecc2cc042a9689 [
file
] [
log
] [
blame
]
//@ known-bug: #139596
#![
feature
(
min_generic_const_args
)]
struct
Colour
;
struct
Led
<
const
C
:
Colour
>;
fn
main
()
{
Led
::<{
Colour
}>;
}