2019-09-27 19:43:46 +12:00
|
|
|
// run-pass
|
|
|
|
|
|
|
|
#![feature(const_generics)]
|
2020-04-22 10:21:32 +02:00
|
|
|
//~^ WARN the feature `const_generics` is incomplete
|
2019-09-27 19:43:46 +12:00
|
|
|
|
|
|
|
pub fn function_with_str<const STRING: &'static str>() -> &'static str {
|
|
|
|
STRING
|
|
|
|
}
|
|
|
|
|
2019-09-28 15:07:22 +12:00
|
|
|
pub fn function_with_bytes<const BYTES: &'static [u8]>() -> &'static [u8] {
|
|
|
|
BYTES
|
|
|
|
}
|
|
|
|
|
2019-09-27 19:43:46 +12:00
|
|
|
pub fn main() {
|
|
|
|
assert_eq!(function_with_str::<"Rust">(), "Rust");
|
2019-09-29 08:39:48 +13:00
|
|
|
assert_eq!(function_with_str::<"ℇ㇈↦">(), "ℇ㇈↦");
|
2019-09-28 15:07:22 +12:00
|
|
|
assert_eq!(function_with_bytes::<b"AAAA">(), &[0x41, 0x41, 0x41, 0x41]);
|
|
|
|
assert_eq!(function_with_bytes::<{&[0x41, 0x41, 0x41, 0x41]}>(), b"AAAA");
|
2019-09-27 19:43:46 +12:00
|
|
|
}
|