From e51d506b085844b185b62d3dd55fd769f7f4b0e9 Mon Sep 17 00:00:00 2001 From: Bryn Rhodes Date: Wed, 3 Sep 2025 07:18:37 -0600 Subject: [PATCH] Add the overloads test back in --- tests/cql/CqlOverloadMatching.xml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/cql/CqlOverloadMatching.xml diff --git a/tests/cql/CqlOverloadMatching.xml b/tests/cql/CqlOverloadMatching.xml new file mode 100644 index 0000000..13df5ef --- /dev/null +++ b/tests/cql/CqlOverloadMatching.xml @@ -0,0 +1,16 @@ + + + + + library SimpleOverloadMatching version '1.0.0' + + define function A(foo Decimal): 'DecimalOverload' + define function A(foo Integer): 'IntegerOverload' + + define output: A(1.0) + + 'DecimalOverload' + + +