-- This Test is Part of the Prometheus Obfuscator by levno-710 -- -- ambiguous-call.lua -- -- This Test demonstrates a reproduction for issue #203 where the parser misreads the following as arguments to the previous literal assignment. local counter = 1 (function() counter = counter + 1 print("counter:", counter) end)();