2020-01-11 22:32:50 -06: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 01:19:57 -05:00
|
|
|
//@ revisions: full min
|
2024-07-14 07:38:51 -05:00
|
|
|
#![cfg_attr(full, feature(adt_const_params, unsized_const_params))]
|
2020-08-09 01:19:57 -05:00
|
|
|
#![cfg_attr(full, allow(incomplete_features))]
|
2020-01-11 20:55:12 -06:00
|
|
|
|
|
|
|
struct A<const N: &u8>;
|
|
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
2023-02-03 17:21:56 -06:00
|
|
|
//[min]~^^ ERROR `&u8` is forbidden
|
2020-01-11 20:55:12 -06:00
|
|
|
trait B {}
|
|
|
|
|
2020-08-09 01:19:57 -05:00
|
|
|
impl<const N: &u8> A<N> {
|
2024-07-14 07:38:51 -05:00
|
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
|
|
|
//[min]~^^ ERROR `&u8` is forbidden
|
2020-01-11 20:55:12 -06:00
|
|
|
fn foo<const M: &u8>(&self) {}
|
|
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
2023-02-03 17:21:56 -06:00
|
|
|
//[min]~^^ ERROR `&u8` is forbidden
|
2020-01-11 20:55:12 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<const N: &u8> B for A<N> {}
|
|
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
2023-02-03 17:21:56 -06:00
|
|
|
//[min]~^^ ERROR `&u8` is forbidden
|
2020-01-11 20:55:12 -06:00
|
|
|
|
|
|
|
fn bar<const N: &u8>() {}
|
|
|
|
//~^ ERROR `&` without an explicit lifetime name cannot be used here
|
2023-02-03 17:21:56 -06:00
|
|
|
//[min]~^^ ERROR `&u8` is forbidden
|
2020-01-11 20:55:12 -06:00
|
|
|
|
|
|
|
fn main() {}
|