diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2021-12-13 11:39:16 +0300 |
---|---|---|
committer | Yuri Roubinsky <chaosus89@gmail.com> | 2021-12-13 11:54:23 +0300 |
commit | 566895732cd0c7a07971c82c89a45f34bde64c74 (patch) | |
tree | 4489dfd8138178a749b730f052620dfa123e741a /modules/gdscript/tests/scripts/parser | |
parent | 6d58b968d5dbfd458bf41b81e3b2dc688f0d5495 (diff) |
Fix shadowed global identifier warning duplication
Diffstat (limited to 'modules/gdscript/tests/scripts/parser')
-rw-r--r-- | modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.out | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.out b/modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.out index f2b29e5bad..c613140eb8 100644 --- a/modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.out +++ b/modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.out @@ -1,9 +1,9 @@ GDTEST_OK >> WARNING >> Line: 2 ->> SHADOWED_GLOBAL_IDENTIFIER ->> The local variable 'abs' has the same name as a built-in function. ->> WARNING ->> Line: 2 >> UNUSED_VARIABLE >> The local variable 'abs' is declared but never used in the block. If this is intended, prefix it with an underscore: '_abs' +>> WARNING +>> Line: 2 +>> SHADOWED_GLOBAL_IDENTIFIER +>> The variable 'abs' has the same name as a built-in function. |