mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
13 lines
135 B
C
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();
|
|
}
|