Sign in
rust
/
rust
/
981cf69479ded5e2de0cf9e16111c19d65be0369
/
.
/
tests
/
ui
/
error-codes
/
E0771.rs
blob: 6d86d4a54e7805a9094d20d8159ab8b1c5e5dce4 [
file
]
#![
feature
(
adt_const_params
,
unsized_const_params
)]
fn
function_with_str
<
'a, const STRING: &'
a str
>()
{}
//~ ERROR E0770
fn
main
()
{
function_with_str
::<
"Hello, world!"
>()
}