zephir icon indicating copy to clipboard operation
zephir copied to clipboard

let self::someVar = "";

Open vital121 opened this issue 9 months 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

vital121 avatar Sep 08 '23 02:09 vital121