Beef icon indicating copy to clipboard operation
Beef copied to clipboard

unable to access static methods from static fields in static blocks

Open Rune-Magic opened this issue 2 months ago • 0 comments

public static int32 FOO_VERSION(int32 major, int32 minor) => ((major) << 16 | (minor) << 8);
public static let FOO_VERSION_2_26 = (FOO_VERSION(2, 26)); // ERROR: Method 'FOO_VERSION' does not exist

Rune-Magic avatar Oct 20 '25 17:10 Rune-Magic