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

Add support for in place sets and dictionaries in function calls #2778

Merged
merged 3 commits into from
Aug 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Import i32
  • Loading branch information
advikkabra authored and czgdp1807 committed Aug 16, 2024
commit 4d91f3cefac2f35353d8884e083770d7faa35e30
2 changes: 2 additions & 0 deletions integration_tests/test_params.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from lpython import i32

def takes_set(a: set[i32]) -> set[i32]:
return {1, 2, 3}

Expand Down
Loading