Multi-declaration of local variable...
-
@Christoph-Hart Is it normal there's no check to prevent multi-declaration of locals?
inline function localTest() { local x = 2; local x; // Perfectly works... } localTest();