Sign in
android
/
toolchain
/
rustc
/
da60c8575e02ed54fcffcb7f2f9289b4705b60ff
/
.
/
src
/
test
/
ui
/
const-generics
/
apit-with-const-param.rs
blob: 70e718d889029fa2130bebdad4127e32b2a6f7f9 [
file
] [
log
] [
blame
]
// run-pass
#![
feature
(
const_generics
)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
trait
Trait
{}
fn
f
<
const
N
:
usize
>(
_
:
impl
Trait
)
{}
fn
main
()
{}