diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-03-18 15:10:37 +0100 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-04-22 13:57:34 +0200 |
commit | ec29c3e784abdf891abd38f42444216e3d2a0fb7 (patch) | |
tree | dad1726991dc9138786ed0cbd6b22532c648bec0 /modules/gdscript/tests/scripts/runtime | |
parent | 7529c0bec597d70bc61975a82063bb5112ac8879 (diff) | |
download | redot-engine-ec29c3e784abdf891abd38f42444216e3d2a0fb7.tar.gz |
[Core] Fix property access on read-only `Dictionary`
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime')
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/errors/read_only_dictionary.gd | 4 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/errors/read_only_dictionary.out | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/runtime/errors/read_only_dictionary.gd b/modules/gdscript/tests/scripts/runtime/errors/read_only_dictionary.gd new file mode 100644 index 0000000000..2f31ecc52f --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/errors/read_only_dictionary.gd @@ -0,0 +1,4 @@ +func test(): + var dictionary := { "a": 0 } + dictionary.make_read_only() + dictionary.a = 1 diff --git a/modules/gdscript/tests/scripts/runtime/errors/read_only_dictionary.out b/modules/gdscript/tests/scripts/runtime/errors/read_only_dictionary.out new file mode 100644 index 0000000000..da7ce58d73 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/errors/read_only_dictionary.out @@ -0,0 +1,6 @@ +GDTEST_RUNTIME_ERROR +>> SCRIPT ERROR +>> on function: test() +>> runtime/errors/read_only_dictionary.gd +>> 4 +>> Invalid assignment of property or key 'a' with value of type 'int' on a base object of type 'Dictionary'. |