From 8e7573e9187d583bcc478676ad92dd94a9ba8387 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sat, 3 Dec 2011 10:00:10 -0500 Subject: Allow sources to be returned by RPCs --- tests/rpcSource.ur | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/rpcSource.ur (limited to 'tests/rpcSource.ur') diff --git a/tests/rpcSource.ur b/tests/rpcSource.ur new file mode 100644 index 00000000..ad144cd6 --- /dev/null +++ b/tests/rpcSource.ur @@ -0,0 +1,13 @@ +fun remote () = + s <- source ; + return (s, ) + +fun main () : transaction page = + x <- source ; + return + +
+