Files
c3c/test/test_suite/generic/generic_without_param.c3
2025-12-13 18:51:45 +01:00

9 lines
171 B
Plaintext

module test;
import std;
import abc;
fn void main()
{
abc::test(); // #error: 'test' is defined in the generic module 'abc', did you
}
module abc{Type};
fn void test() {}