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

type argument inference from method argument in named arg list #339

Closed
gavinking opened this issue Jun 20, 2012 · 1 comment
Closed

type argument inference from method argument in named arg list #339

gavinking opened this issue Jun 20, 2012 · 1 comment

Comments

@gavinking
Copy link
Member

The following example from the tour does not pass the typechecker:

shared interface Observable {
    shared void addObserver<Event>(void on(Event event)) { }
}

class UpdateEvent() {}

void add() {
    object observable satisfies Observable {}
    observable.addObserver((UpdateEvent e)
            print("Update:" + e.string));
    observable.addObserver {
        void on(UpdateEvent e) {
            print("Update:" + e.string);
        }
    };
}
@ghost ghost assigned gavinking Jun 20, 2012
@gavinking
Copy link
Member Author

I'm rather happy to have snuck this improvement into M3 :-)

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