mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
Deprecation of define Type = ...
This commit is contained in:
@@ -1049,8 +1049,8 @@ static Expr *parse_identifier_starting_expression(ParseContext *c, Expr *left)
|
||||
{
|
||||
assert(!left && "Unexpected left hand side");
|
||||
bool had_error;
|
||||
Path *path = parse_path_prefix(c, &had_error);
|
||||
if (had_error) return poisoned_expr;
|
||||
Path *path;
|
||||
if (!parse_path_prefix(c, &path)) return poisoned_expr;
|
||||
switch (c->tok)
|
||||
{
|
||||
case TOKEN_IDENT:
|
||||
|
||||
Reference in New Issue
Block a user