Add test.

This commit is contained in:
Christoffer Lerno
2024-09-18 23:16:07 +02:00
parent 20fd7aba9b
commit 9426e813be

View File

@@ -0,0 +1,9 @@
module test;
macro @test(uint value, #type) {
}
fn void main()
{
@test(1, uint);
}