Fixed Markus example
authorpimjager <pim@pimjager.nl>
Thu, 26 May 2016 12:14:20 +0000 (14:14 +0200)
committerpimjager <pim@pimjager.nl>
Thu, 26 May 2016 12:14:20 +0000 (14:14 +0200)
examples/Markus/polymorphic_value_again_shouldfail.spl

index 0381134..ade01e1 100644 (file)
@@ -5,7 +5,7 @@ tuple1() { return (1:[], True:[]); }
 
 // This should fail.
 l() { return [];}
-tuple2() { return (1:l, True:l);}
+tuple2() { return (1:l(), True:l());}
 
 
 main() { return; }