mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
10 lines
153 B
C
10 lines
153 B
C
def Foo = fn void(int x);
|
|
|
|
def Bar = distinct Foo;
|
|
def Baz = distinct fn void(int x);
|
|
|
|
fn void main()
|
|
{
|
|
Bar t = fn (x) { };
|
|
Baz w = fn (x) { };
|
|
} |