From 56f20db1bb3c4744fcaf64cb83f93afd8974954e Mon Sep 17 00:00:00 2001 From: Lucas Werkmeister Date: Thu, 11 Jun 2015 17:20:11 +0200 Subject: [PATCH] Add test for generic anonymous functions Part of #108. --- test-samples/higherTypes.ceylon | 1 + 1 file changed, 1 insertion(+) diff --git a/test-samples/higherTypes.ceylon b/test-samples/higherTypes.ceylon index 859323a..c3238c1 100644 --- a/test-samples/higherTypes.ceylon +++ b/test-samples/higherTypes.ceylon @@ -8,3 +8,4 @@ value namedArgsInvocWithFunctionArgWithTypeParam = f { return t; } }; +value anonymousGenericFunction = (T t) => t;