From 12dfc3678d66bc5d04ef59f00e3af5a37add1ac0 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sun, 24 Aug 2014 11:43:49 -0400 Subject: Extend ScriptCheck to take RPCs into account --- tests/rpchan.ur | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/rpchan.ur (limited to 'tests/rpchan.ur') diff --git a/tests/rpchan.ur b/tests/rpchan.ur new file mode 100644 index 00000000..08308d90 --- /dev/null +++ b/tests/rpchan.ur @@ -0,0 +1,18 @@ +fun remote () = + ch <- channel; + send ch "Hello World!"; + return ch + +fun remoter () = + ch <- channel; + send ch "Hello World!"; + return }/> + +fun main () = + x <- source ; + return + + +
+ +
-- cgit v1.2.3