Files
c3c/test/test_suite/abi/linux_x64_test.c3t
Christoffer Lerno 42dc2d541a Add testcase.
2026-01-04 22:05:01 +01:00

20 lines
269 B
Plaintext

// #target: linux-x64
module testme;
fn void main(String[] args)
{
Configuration config;
}
struct Configuration
{
LoadFn loadModuleFn;
}
alias LoadFn = fn Result();
alias CompleteFn = fn void (Result result);
struct Result
{
CompleteFn onComplete;
}