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

Missing error location for constraint #2135

Open
mzagozen opened this issue Jan 29, 2025 · 0 comments
Open

Missing error location for constraint #2135

mzagozen opened this issue Jan 29, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@mzagozen
Copy link
Collaborator

Acton Version

0.24.1.20250129.8.25.26

Steps to Reproduce and Observed Behavior

class Foo(object):
    thing: ?bool

    def __init__(self, thing):
        self.thing = thing

mut def remove_thing(foos):
    for f in foos:
        f.thing = None

def process():
    p = []
    foos = [Foo(True)]
    # This is obviously wrong, remove_thing() does not return Iterable
    p.extend(remove_thing(foos))
[error]: Constraint violation
     ╭──▶ @0:0-0:0
     │
   0 │ <no line>
     •
     • ╰╸ None must be a subclass of __builtin__.list[_]
─────╯

Expected Behavior

Error points to somewhere in the line p.extend(remove_thing(foos))

@mzagozen mzagozen added the bug Something isn't working label Jan 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant