Files
c3c/test/test_suite/methods/self_not_method.c3

11 lines
139 B
Plaintext

macro void m(&x) // #error: Self parameters are only allowed on methods
{
$echo $typeof(x);
}
fn void main()
{
int x;
m(x);
}