Files
c3c/test/test_suite7/errors/mixed_decl.c3
2025-02-23 13:53:04 +01:00

10 lines
80 B
Plaintext

import std::io;
fn void main()
{
int a, $b;
int $c, $d;
a++;
$b++;
$d++;
}