Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Add test for parameterized exprs with type params
Browse files Browse the repository at this point in the history
Another part of #108 that already works without having to change
anything. Looks like ParameterizedException’s default walker order works
for us.
  • Loading branch information
lucaswerkmeister committed Jun 12, 2015
1 parent 56f20db commit 53e74f8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test-samples/higherTypes.ceylon
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ value namedArgsInvocWithFunctionArgWithTypeParam = f {
}
};
value anonymousGenericFunction = <T>(T t) => t;
class C() {
parameterizedExpressionWithTypeParams<T>(T t) => t;
}

0 comments on commit 53e74f8

Please sign in to comment.