blob: 6d86d4a54e7805a9094d20d8159ab8b1c5e5dce4 [file] [edit]
#![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!">()
}