Files
c3c/test/test_suite/generic/generic_without_param.c3
2025-03-03 00:32:20 +01:00

9 lines
122 B
Plaintext

module test;
import std;
import abc;
fn void main()
{
abc::test(); // #error: {...}
}
module abc{Type};
fn void test() {}