Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
expose-default-substs-param-env.rs
blob: 4a92de2573dd5d6895af6c2c97fb8898a638d65e [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass
#![
feature
(
generic_const_exprs
)]
#![
allow
(
unused_braces
,
incomplete_features
)]
pub
trait
Foo
<
const
N
:
usize
>
{}
pub
trait
Bar
:
Foo
<{
1
}>
{
}
fn
main
()
{}