2022-07-29 20:04:28 +04:00
|
|
|
error: expected identifier, found keyword `const`
|
2021-08-27 08:26:35 +00:00
|
|
|
--> $DIR/without-tilde.rs:5:13
|
|
|
|
|
|
|
|
|
LL | struct S<T: const Tr>;
|
2022-07-29 20:04:28 +04:00
|
|
|
| ^^^^^ expected identifier, found keyword
|
2021-08-27 08:26:35 +00:00
|
|
|
|
2022-07-29 20:04:28 +04:00
|
|
|
error: expected one of `(`, `+`, `,`, `::`, `<`, `=`, or `>`, found `Tr`
|
|
|
|
--> $DIR/without-tilde.rs:5:19
|
|
|
|
|
|
|
|
|
LL | struct S<T: const Tr>;
|
|
|
|
| ^^ expected one of 7 possible tokens
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2021-08-27 08:26:35 +00:00
|
|
|
|