zephir icon indicating copy to clipboard operation
zephir copied to clipboard

let self::someVar = "";

Open tecworks-dev opened this issue 1 year ago • 0 comments

namespace Demo;

class MyClass {

protected static someVar;

public static function setVar() {
    let self::someVar = "";
}

}

let self::someVar = ""; [ERROR] Internal extension compilation failed. Check compile-errors.log for more information. but let self::someVar = "123"; let self::someVar = null; works fine

tecworks-dev avatar Sep 08 '23 02:09 tecworks-dev