2020-01-12 04:32:50 +00:00
|
|
|
// Elided lifetimes within the type of a const generic parameters is disallowed. This matches the
|
|
|
|
// behaviour of trait bounds where `fn foo<T: Ord<&u8>>() {}` is illegal. Though we could change
|
|
|
|
// elided lifetimes within the type of a const generic parameters to be 'static, like elided
|
|
|
|
// lifetimes within const/static items.
|
2020-08-09 06:19:57 +00:00
|
|
|
// revisions: full min
|
2021-08-27 16:04:57 +00:00
|
|
|
#![cfg_attr(full, feature(const_param_types))]
|
2020-08-09 06:19:57 +00:00
|
|
|
#![cfg_attr(full, allow(incomplete_features))]
|
2020-01-12 02:55:12 +00:00
|
|
|
|
|
|
|
struct A<const N: &u8>;
|
|
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
2020-08-18 20:44:06 +00:00
|
|
|
//[min]~^^ ERROR `&'static u8` is forbidden
|
2020-01-12 02:55:12 +00:00
|
|
|
trait B {}
|
|
|
|
|
2020-08-09 06:19:57 +00:00
|
|
|
impl<const N: &u8> A<N> {
|
|
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
2020-08-18 20:44:06 +00:00
|
|
|
//[min]~^^ ERROR `&'static u8` is forbidden
|
2020-01-12 02:55:12 +00:00
|
|
|
fn foo<const M: &u8>(&self) {}
|
|
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
2020-08-18 20:44:06 +00:00
|
|
|
//[min]~^^ ERROR `&'static u8` is forbidden
|
2020-01-12 02:55:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<const N: &u8> B for A<N> {}
|
|
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
2020-08-18 20:44:06 +00:00
|
|
|
//[min]~^^ ERROR `&'static u8` is forbidden
|
2020-01-12 02:55:12 +00:00
|
|
|
|
|
|
|
fn bar<const N: &u8>() {}
|
|
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
2020-08-18 20:44:06 +00:00
|
|
|
//[min]~^^ ERROR `&'static u8` is forbidden
|
2020-01-12 02:55:12 +00:00
|
|
|
|
|
|
|
fn main() {}
|