Files
c3c/test/test_suite/generic/generic_without_param.c3
2026-01-18 00:33:43 +01:00

9 lines
188 B
Plaintext

module test;
import std;
import abc;
fn void main()
{
abc::test(); // #error: 'test' is a generic function, did you forget the parameters '{ ... }'?
}
module abc <Type>;
fn void test() {}