From e26df7d77f923108ac121f1d6c9c3160a6855109 Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 7 Aug 2022 06:43:30 +0200 Subject: constify access of const aggregate --- bootstrap/test.cff | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bootstrap/test.cff') diff --git a/bootstrap/test.cff b/bootstrap/test.cff index a000224..2a7a138 100644 --- a/bootstrap/test.cff +++ b/bootstrap/test.cff @@ -83,6 +83,9 @@ extern fn main (argc int, argv **u8) int { printf("sl %d\n", slice[0]); slice.#len; + let const v Vec2f = {}; + ! v.x += 1; + printf("sizeof(is) = %zu\n", sizeof(is)); printf("sizeof *void = %zu\n", sizeof *void); printf("1.2 -> %#.8x\n", transmute(u32, 1.2f)); -- cgit v1.2.3