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 compiler fails to compile this block of code: ``` public static void AtomicDetach(ref alloctype(T) d) where T : var { if(d.@ref == 1) { return; } var x =...

### Summary A compilation error occurs when the following criteria is satisfied: - A pointer to a derived class instance is access through the array indexing operator. - That pointer...

There is a workspace in `Toml/TestApp/`. When opening the workspace, you get some errors about generic arguments not implementing an interface. To make the errors go away, you need to...

I've never been particularly fond of C++ but I think it does a couple of things right, such as `public:` and `private:`. It always bugged me that you have to...

I specified the cjk font and the ide was fine, but some of the displays were not ![image](https://user-images.githubusercontent.com/37748815/210907482-c23262e5-e1bb-44e3-80a3-304f6d4a1003.png) ![image](https://user-images.githubusercontent.com/37748815/210907858-4b911437-b746-40e9-b009-3cd59f903dfc.png)

```bf enum A { case A(int a); case B; } static A a; static void Main() { //let a = a; switch (a) { case .A(let intThing): case .B: //...

Through an unfortunate series of events I ended up with this code (i really meant to call TryWrite, and assumed the cast in the payload was just due to some...

The below code will crash when press F5: ```C# using System; public struct Vector2 { public float x; public float y; public this() { this = default; } public this(float...

This works fine: ```cs interface IMethod { void Method(); } struct A : IMethod { void IMethod.Method() { } } ``` But trying to implement the interface explicitly (also suggested...