Ticket Created

CIQQA-1382

New compiler crashes on "me"

    class Settings {
        var layout as Number = 0;

        function setLayout(i as Number) as Void {
            me.layout = i;
        }
    }

ERROR: approachs60: Could not validate optimized Monkey C IR.
ERROR: approachs60: bug.mc:5: Optimization validation failure: Cannot find register value '%me'

The same code works if you change "me" to self, or drop it entirely.

Parents Comment Children