From 968aeec5236a6d286987b72244602cd413052ced Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Fri, 25 Dec 2009 07:16:59 -0800 Subject: [PATCH] added a test to make sure that chained calls work --- test/fixtures/execution/chained_calls.cs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/fixtures/execution/chained_calls.cs diff --git a/test/fixtures/execution/chained_calls.cs b/test/fixtures/execution/chained_calls.cs new file mode 100644 index 00000000..ac0ef269 --- /dev/null +++ b/test/fixtures/execution/chained_calls.cs @@ -0,0 +1,5 @@ +identity_wrap: x => => x.. + +result: identity_wrap(identity_wrap(true))()() + +print(result) \ No newline at end of file