annotate tests/aborter.ur @ 1553:4105f779de7b

Even gentler handling of back-button returns to pages with stale message-passing credentials
author Adam Chlipala <adam@chlipala.net>
date Sun, 28 Aug 2011 19:32:20 -0400
parents b10132434adc
children
rev   line source
adamc@424 1 table t : {A : int}
adamc@424 2
adamc@424 3 fun main () : transaction page =
adamc@424 4 () <- dml (INSERT INTO t (A) VALUES (0));
adamc@424 5 return (error <xml>No way, Jose!</xml>)