Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
inline-const
/
const-expr-generic-err2.rs
blob: 49cbdbfda5da81290bd43294f540057d20c7f23f [
file
] [
log
] [
blame
] [
edit
]
fn
foo
<
T
>()
{
let
_
=
[
0u8
;
const
{
std
::
mem
::
size_of
::<
T
>()
}];
//~^ ERROR: constant expression depends on a generic parameter
}
fn
main
()
{
foo
::<
i32
>();
}