shithub: mc

Download patch

ref: feb438e1da5e94850119f4593d64a821f21a4242
parent: 3a5ddf0610add4ea0663c4bf2d7f569ac723ad81
author: Ori Bernstein <ori@eigenstate.org>
date: Wed Oct 26 17:53:12 EDT 2016

Remove workaround for old compiler bug.

--- a/lib/std/test/fmt.myr
+++ b/lib/std/test/fmt.myr
@@ -1,20 +1,18 @@
 use std
 
-pkg =
-	type blah
-	type blah = struct
-		a : byte[:]
-		b : int
-	;;
-	type u = union
-		`First
-		`Second int
-		`Third byte[:]
-	;;
-	type pair = struct
-		x : int16
-		y : int32
-	;;
+type blah
+type blah = struct
+	a : byte[:]
+	b : int
+;;
+type u = union
+	`First
+	`Second int
+	`Third byte[:]
+;;
+type pair = struct
+	x : int16
+	y : int32
 ;;
 
 const check = {expected, fmt, args : ...