From 929cad6c0cf499d4c4bb658d92383734da45794a Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Fri, 16 Mar 2012 08:42:51 -0400 Subject: Change ID generation scheme to conform to HTML standards (thanks to Edward Yang for the catch) --- tests/id.ur | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/id.ur (limited to 'tests/id.ur') diff --git a/tests/id.ur b/tests/id.ur new file mode 100644 index 00000000..2178cf4f --- /dev/null +++ b/tests/id.ur @@ -0,0 +1,11 @@ +fun main () : transaction page = + id1 <- fresh; + id2 <- fresh; + x <- source ; + return + Hi! + Ho! + +