Rune
Rune
Reproduction: ```bf [Comptime] void ComptimeMethod() { [Comptime] void NestedComptimeMethod() { NestedComptimeMethod(); } NestedComptimeMethod(); } ComptimeMethod(); ``` Error: ``` ERROR: Comptime method generation had errors ComptimeMethod(); ^^^^^^^^^^^^^^ > Method 'NestedComptimeMethod' does...
```beef public static int32 FOO_VERSION(int32 major, int32 minor) => ((major)
minor inconviniece ```beef class Foo {} public static void Bar(this Foo foo) {} public static mixin Bar(this Foo foo) {} Foo foo = scope .(); foo.Bar(); // works foo.Bar!(); //...