Files
Christoffer Lerno e4e499edd2 Allow $defined take declarations: $defined(int x = y)
Taking the address of a label would cause a crash. #2430
2025-08-23 12:00:17 +02:00

5 lines
140 B
Plaintext

fn int main(String[] args)
{
$defined(int a = 3.0);
$defined(int[*] b); // #error: Inferred array types can only be used in declarations
}