Makopo/lslint

No error for using variables before being declared

Closed this issue · 0 comments

Example:

integer x = y;
integer y;

default
{
    state_entry()
    {
        if (a) x;
        string a;
    }
}

Output:

TOTAL:: Errors: 0  Warnings: 0