Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
refs/heads/upstream/master
/
.
/
tests
/
crashes
/
139596.rs
blob: 590cfddf83e29c1a72bdbacf24ecc2cc042a9689 [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #139596
#![
feature
(
min_generic_const_args
)]
struct
Colour
;
struct
Led
<
const
C
:
Colour
>;
fn
main
()
{
Led
::<{
Colour
}>;
}