Use ConstArg instead of Expr for AstId of InTypeConstId

This commit is contained in:
hkalbasi 2023-06-08 23:47:45 +03:30
parent d9136df9e5
commit f8594f78bb
13 changed files with 29 additions and 28 deletions

View file

@ -153,7 +153,9 @@ fn array_or_slice_type(p: &mut Parser<'_>) {
// type T = [(); 92];
T![;] => {
p.bump(T![;]);
let m = p.start();
expressions::expr(p);
m.complete(p, CONST_ARG);
p.expect(T![']']);
ARRAY_TYPE
}