Sign in
rust
/
rust
/
e4375da4e8fcd40ea5a43e72a256db5cbfacf156
/
.
/
tests
/
ui
/
inline-const
/
const-expr-inference.rs
blob: 99cea3204a194793e3a45587c47cd361ecb44047 [
file
] [
log
] [
blame
]
//@ check-pass
pub
fn
todo
<
T
>()
->
T
{
const
{
todo
!()
}
}
fn
main
()
{
let
_
:
usize
=
const
{
0
};
}