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