Beef icon indicating copy to clipboard operation
Beef copied to clipboard

Beef Programming Language

Results 279 Beef issues
Sort by recently updated
recently updated
newest added

The code below causes the assert failure mentioned in the issue title when compiled using the IDE debug build. ```cs namespace System.Collections { public interface IVariantEnumerable { public VariantEnumeratorWrapper GetVariantEnumerator();...

After the recent changes, `Enum.Parse` compilation fails when enum members contain keyword with `@` prefix. The code generation ends up outputting `.public`, which is seen as a keyword. I was...

Version: Release 0.43.4 On Windows, when debugging any C program (win64) that creates a window, the console output window is raised to the top automatically, over my window. I've tested...

[typealias Crash.dmp](https://github.com/beefytech/Beef/files/14215963/typealias.Crash.dmp) ![image](https://github.com/beefytech/Beef/assets/78807/0eab55ba-ea9d-405a-aeb5-106415b61705)

Here are some IDE crash dumps. Hopefully they can help to fix some errors. 1 occurs when starting to debug the program. The other 2 occurs when trying to navigate...

```cs public struct MyStruct where T : const int { ... } MyStruct a; //error MyStruct b; //ok MyStryct c; //ok ```

Hello, I have a static link library generated by vs, He runs well in the vs c++console program How to run normally in beef? ![-4134fa0bbc270155](https://user-images.githubusercontent.com/37748815/210139334-3fb55328-3cf7-4ad3-b3df-193a8dc7ca08.jpg) ![59f857a766b4d331](https://user-images.githubusercontent.com/37748815/210139356-3487985f-90f2-48db-a651-3bffc85bf492.jpg) thank!

This was already known so its more to help if others have the same issue. If you call a function via a function binding and pass in a struct that...

![image](https://github.com/beefytech/Beef/assets/78807/ef5544e0-bd8c-4146-980f-605da78b4909) Notice there is no semicolon after: ```public override StringView Name => "Audio"``` This doesn't cause a compile time error, but causes bad formatting of code.

Hi there, Code like `typeof(Program).[Friend]mTypeCode` causes IDE to crash, if that is used in comptime. Declaring a variable that will hold the `Type` first, does not trigger a crash. It...