1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Added tests for typed primitives

This commit is contained in:
Brian Fiete 2020-05-15 15:08:26 -07:00
parent cfc25003a0
commit 24d083f028
3 changed files with 26 additions and 0 deletions

View file

@ -28,6 +28,7 @@ namespace IDETest
MemoryBreakpointTester.Test();
SplatTester.Test();
Stepping_Scope.Test();
TypedPrimitives.Test();
Unions.Test();
Virtuals.Test();

View file

@ -0,0 +1,15 @@
#pragma warning disable 168
class TypedPrimitives
{
struct StructA : float
{
}
public static void Test()
{
//Test_Start
StructA sa = (.)1.2f;
}
}