Sign in
android
/
toolchain
/
rustc
/
59fbe18bc79ed87d0c5f02705e7cf19e402e1f2b
/
.
/
src
/
test
/
ui
/
const-generics
/
apit-with-const-param.rs
blob: 3bc62141927ae14358312ae03de46b01851b6202 [
file
] [
log
] [
blame
]
// check-pass
// revisions: full min
#![
cfg_attr
(
full
,
feature
(
const_generics
))]
#![
cfg_attr
(
full
,
allow
(
incomplete_features
))]
trait
Trait
{}
fn
f
<
const
N
:
usize
>(
_
:
impl
Trait
)
{}
fn
main
()
{}