[Vala] Bug: Assert failure in compiler

2015-05-07 Thread Craig
Hi, I think I found a bug (see the text at the end). Where can I report this? Thanks, Craig someone@someone-desktop:~/temp$ cat test.vala public class HelloT { public delegate void HelloFunc(T t); public HelloFunc _hello = (t) = {}; } someone@someone-desktop:~/temp$ valac -c test.vala

Re: [Vala] Strings and template comparison

2015-05-07 Thread Luca Bruno
On 07/05/2015 14:41, Craig wrote: Hello, Why are strings not compared by value when they're passed into template functions? Consider this gist: https://gist.github.com/weberc2/4131654ff068d27f9cde Is there anything I can do to get value comparison back in templates? Because generics don't

[Vala] Strings and template comparison

2015-05-07 Thread Craig
Hello, Why are strings not compared by value when they're passed into template functions? Consider this gist: https://gist.github.com/weberc2/4131654ff068d27f9cde Is there anything I can do to get value comparison back in templates? Please advise. Thanks, Craig