Closed stepancheg closed 11 months ago
Allow this syntax:
#[distributed_slice] static RES: [Res; 0] = [];
as equivalent to
#[distributed_slice] static RES: [Res];
so CLion won't complain about syntax it does not understand.
Actually, nevermind, this syntax is fine:
#[distributed_slice] static RES: [Res] = [..];
Allow this syntax:
as equivalent to
so CLion won't complain about syntax it does not understand.