Hunter Bridges
Hunter Bridges
*Repro:* Declare a struct type `Foo`, then another struct type `Bar` which inherits from it. Create an instance of `Bar` and attempt to cast it to `Foo`. ``` struct Foo...
Would it be possible to support dot notation for extensions? Like so: ``` extension Foo.Bar { ... } ``` Ideally, Foo could be a namespace, struct, or class. Name resolution...
(Bug found on `aarch64` Switch build) We have this function which uses a for loop with a generic enumerator `Layer.ForEach()`. That enumerator implements `public Result GetNext() mut`. On `aarch64`, it...
(Bug encountered on `aarch64` Switch build) I have this struct `ABIStr` that is defined as such:  --- If I call a C++ API function on the C++ side, the...
We have this function in our C API: ```cpp Vector3 RSDK_Vector3_CalculateBezierPoint_2(float t, Vector3 start, Vector3 ctrl1, Vector3 ctrl2, Vector3 end) { return Vector3::CalculateBezierPoint(t, start, ctrl1, ctrl2, end); } ``` Exposed...