Files
c3c/test/test_suite/dynamic/duplicate_definition.c3
2023-10-20 14:12:08 +02:00

13 lines
135 B
C

module test;
interface Abc
{
fn void abc();
fn void abc(); // #error: Duplicate definition
}
fn void! main()
{
Abc* g;
g.abc();
}