annotate tests/mutual.ur @ 2261:f81f1930c5d6

Fix SQL-parsing and declaration-ordering bugs.
author Ziv Scully <ziv@mit.edu>
date Wed, 30 Sep 2015 00:33:52 -0400
parents 61a1f5c5ae2c
children
rev   line source
adamc@805 1 datatype foo = A | B of bar
adamc@805 2 and bar = C | D of foo
adamc@807 3
adamc@807 4 val q = B (D A)
adamc@807 5
adamc@807 6 fun main () = return <xml>
adamc@807 7 {case q of
adamc@807 8 B (D A) => <xml>Good</xml>
adamc@807 9 | _ => <xml>Bad</xml>}
adamc@807 10 </xml>