Files
c3c/test/test_suite/macros/deref_macro_pointer.c3

16 lines
180 B
C

module test;
fn void test(int* a) {}
macro @abc(&self)
{
test(self); // #error: Implicitly casting 'int**' to 'int*'
}
fn void! test1()
{
int* a;
int b;
@abc(a);
@abc(b);
}