tests: Add "gtktemplate" test to increase coverage
[vala-gnome.git] / tests / semantic / delegate-too-few-type-arguments.test
bloba232a86c5a7ed7750b906085ba47a598874451f9
1 Invalid Code
3 delegate void FooFunc<G,T> (G g, T t);
5 void main () {
6         FooFunc<string> foo = (g, t) => {};