Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
const-generics
/
foreign-item-const-parameter.rs
blob: 4fe377b5964f74a43f6b5cd08db2cd6f0218d09d [
file
]
extern
"C"
{
fn
foo
<
const
X
:
usize
>();
//~ ERROR foreign items may not have const parameters
fn
bar
<
T
,
const
X
:
usize
>(
_
:
T
);
//~ ERROR foreign items may not have type or const parameters
}
fn
main
()
{}