Re: [Vala] Bug: Funny signal declarations make valac cry



Sorry, something broke along the way.

Good morning everyone.
See this code, try to compile it.


using GLib;

/**
Bug report:
Funny signal declarations make valac cry

*/

class Myclass : Object{
    public signal void kaboom(int a, ...);
}

public int main(string args[])
{
    var t1 = new Myclass();
    t1.kaboom(3, "asdf");

    return 0;
}



Best regards,
Javier



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]