Input:
functest_warnings():
@warning_ignore("unused_local_constant") constunused_local_constant=1Error: the input GDScript code contains parse errors
This code is fine:
functest_warnings():
@warning_ignore("unused_local_constant") varunused_local_constant=1This is also fine (but it gets formatted into the input code and you get the same error when formatting again):
functest_warnings():
@warning_ignore("unused_local_constant")
constunused_local_constant=1
Input:
Error:
the input GDScript code contains parse errorsThis code is fine:
This is also fine (but it gets formatted into the input code and you get the same error when formatting again):