summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/features/enum_assign_same_enum.out
Commit message (Collapse)AuthorAgeFilesLines
* GDScript: Consolidate behavior for assigning enum typesGeorge Marques2022-02-031-0/+5
This makes sure that assigning values to enum-typed variables are consistent. Same enum is always valid, different enum is always invalid (without casting) and assigning `int` creates a warning if there is no casting. There are new test cases to ensure this behavior doesn't break in the future.