blob: ba3592719408c5bc997e51a4076312a5f7766cd1 (
plain)
1
2
3
4
5
6
7
8
|
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete
fn function_with_str<'a, const STRING: &'a str>() {} //~ ERROR E0771
fn main() {
function_with_str::<"Hello, world!">()
}
|