Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Calling print() on an array containing itself crashes a project without error messages. #80988

Closed
ghost opened this issue Aug 25, 2023 · 1 comment

Comments

@ghost
Copy link

ghost commented Aug 25, 2023

Godot version

v4.2.dev3.official.013e8e3af

System information

Windows 10.0.19045 - GLES3 (Compatibility)

Issue description

Possibly a duplicate of #1289, but I can't reopen that one.

Running the following code instantly crashes a project in version 4.2.dev3, and does not leave any error messages in editor, cosole or logs:

var test = []
test.append(test)
print(test)

Steps to reproduce

Run the code:

var test = []
test.append(test)
print(test)

Minimal reproduction project

var test = []
test.append(test)
print(test)
@dalexeev
Copy link
Member

Thanks for reporting the bug nonetheless!

@dalexeev dalexeev closed this as not planned Won't fix, can't repro, duplicate, stale Aug 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant