summaryrefslogtreecommitdiff
path: root/tests/semantic/delegate-too-few-type-arguments.test
blob: a232a86c5a7ed7750b906085ba47a598874451f9 (plain)
1
2
3
4
5
6
7
Invalid Code

delegate void FooFunc<G,T> (G g, T t);

void main () {
	FooFunc<string> foo = (g, t) => {};
}