On 2011-02-02 23:48:15 -0500, %u <dfl...@sgjds.com> said:

When implemented, will uniform call syntax work for the "this"
object even if not specified?

For example, will foo() get called in the following example?

void foo(A a, int b) {}

class A {
    void test() {
        this.foo(10);
        foo(10);
    }
}

I think it should work.


--
Michel Fortin
michel.for...@michelf.com
http://michelf.com/

Reply via email to