View Single Post
kossolax
AlliedModders Donor
Join Date: Jan 2008
Location: Belgium
Old 05-30-2019 , 16:29   Re: Enum Structs Available This Holiday Season
Reply With Quote #27

Hello,

Why this one is invalid ?
error 008: must be a constant expression; assumed zero


PHP Code:
enum struct Foo {
    
int a;
    
int b;
}

Foo bar[65];

public 
void OnPluginStart() {    
    
Foo i bar[0];
    
i.1;
    
i.2;

this is valid though: bar[0].a


used version 6421

Last edited by kossolax; 05-30-2019 at 16:32.
kossolax is offline