summaryrefslogtreecommitdiff
path: root/tests/sizeof.toc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sizeof.toc')
-rw-r--r--tests/sizeof.toc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sizeof.toc b/tests/sizeof.toc
index 5a97985..a12648e 100644
--- a/tests/sizeof.toc
+++ b/tests/sizeof.toc
@@ -6,8 +6,8 @@ Point3D ::= struct {
calculation ::= fn() int {
p: Point3D;
- (#sizeof Point3D) * (#sizeof typeof p) * (sizeof Point3D) * (sizeof typeof p)
- * (#alignof Point3D) * (#alignof typeof p) * (alignof Point3D) * (alignof typeof p)
+ return (#sizeof Point3D) * (#sizeof typeof p) * (sizeof Point3D) * (sizeof typeof p)
+ * (#alignof Point3D) * (#alignof typeof p) * (alignof Point3D) * (alignof typeof p);
}
main ::= fn() {