Add testcase.

This commit is contained in:
Christoffer Lerno
2026-01-04 22:05:01 +01:00
parent fdbbe5c1aa
commit 42dc2d541a

View File

@@ -0,0 +1,20 @@
// #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;
}