From 2f4e673be3e980f91bd5829b5f8b47cd8ee2838f Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Wed, 30 Oct 2024 12:20:37 -0500 Subject: [PATCH] Add test for nameless function arguments --- Source/Engine/Tests/TestScripting.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Engine/Tests/TestScripting.h b/Source/Engine/Tests/TestScripting.h index 476060b0b..cf158fded 100644 --- a/Source/Engine/Tests/TestScripting.h +++ b/Source/Engine/Tests/TestScripting.h @@ -178,6 +178,9 @@ public: return static_cast(number); } + // Test nameless arguments + API_FUNCTION() void TestNamelessArguments(int32, float, bool){} + int32 TestInterfaceMethod(const String& str) override { return str.Length();