aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests2')
-rw-r--r--tests/tests2/27_sizeof.c2
-rw-r--r--tests/tests2/27_sizeof.expect1
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/tests2/27_sizeof.c b/tests/tests2/27_sizeof.c
index d1694b6..5ae0ede 100644
--- a/tests/tests2/27_sizeof.c
+++ b/tests/tests2/27_sizeof.c
@@ -10,6 +10,8 @@ int main()
printf("%d\n", sizeof(b));
printf("%d\n", sizeof(c));
+ printf("%d\n", sizeof(!a));
+
return 0;
}
diff --git a/tests/tests2/27_sizeof.expect b/tests/tests2/27_sizeof.expect
index 7329e00..a47ea3a 100644
--- a/tests/tests2/27_sizeof.expect
+++ b/tests/tests2/27_sizeof.expect
@@ -1,3 +1,4 @@
1
4
8
+4