mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
14 lines
115 B
Plaintext
14 lines
115 B
Plaintext
struct Foo
|
|
{
|
|
int[2] a;
|
|
}
|
|
|
|
<*
|
|
@param [&out] bar
|
|
*>
|
|
fn void foo(Foo* bar)
|
|
{
|
|
bar.a[0] = 0;
|
|
}
|
|
fn int main() => 0;
|