2022-02-21 17:53:16 -08:00
|
|
|
// compile-flags: -Z parse-only
|
2021-08-27 08:26:35 +00:00
|
|
|
|
|
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
|
|
|
|
|
struct S<T: const Tr>;
|
2022-07-29 20:04:28 +04:00
|
|
|
//~^ ERROR expected identifier, found keyword `const`
|
|
|
|
|
//~| ERROR expected one of `(`, `+`, `,`, `::`, `<`, `=`, or `>`, found `Tr`
|