Files
c3c/test/test_suite/functions/distinct_fn_ptr_and_lambda.c3t
Christoffer Lerno 99cfaa1583 Refactor protocols.
2023-10-06 22:31:41 +02:00

8 lines
90 B
C

def Foo = fn void(int x);
distinct Bar = Foo;
fn void main()
{
Bar t = fn (x) { };
}