2022-10-09 08:56:40 -05:00
|
|
|
struct S<'a>(&'a u8);
|
|
|
|
fn foo() {}
|
|
|
|
|
|
|
|
// Paren generic args in AnonConst
|
2024-05-28 06:38:30 -05:00
|
|
|
fn a() -> [u8; foo()] {
|
|
|
|
//~^ ERROR mismatched types
|
2022-10-09 08:56:40 -05:00
|
|
|
panic!()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Paren generic args in ConstGeneric
|
|
|
|
fn b<const C: u8()>() {}
|
|
|
|
//~^ ERROR parenthesized type parameters may only be used with a `Fn` trait
|
|
|
|
|
|
|
|
// Paren generic args in AnonymousReportError
|
|
|
|
fn c<T = u8()>() {}
|
|
|
|
//~^ ERROR parenthesized type parameters may only be used with a `Fn` trait
|
|
|
|
//~| ERROR defaults for type parameters are only allowed in
|
|
|
|
//~| WARN this was previously accepted
|
|
|
|
|
|
|
|
// Elided lifetime in path in ConstGeneric
|
|
|
|
fn d<const C: S>() {}
|
|
|
|
//~^ ERROR missing lifetime specifier
|
2023-02-03 17:21:56 -06:00
|
|
|
//~| ERROR `S<'_>` is forbidden as the type of a const generic parameter
|
2022-10-09 08:56:40 -05:00
|
|
|
|
2023-03-16 10:17:56 -05:00
|
|
|
trait Foo<'a> {}
|
|
|
|
struct Bar<const N: &'a (dyn for<'a> Foo<'a>)>;
|
2023-05-05 15:42:51 -05:00
|
|
|
//~^ ERROR the type of const parameters must not depend on other generic parameters
|
2024-05-28 06:38:30 -05:00
|
|
|
//~| ERROR `&dyn for<'a> Foo<'a>` is forbidden as the type of a const generic parameter
|
2023-03-16 10:17:56 -05:00
|
|
|
|
2022-10-09 08:56:40 -05:00
|
|
|
fn main() {}
|