aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-09-01 22:44:45 +0900
committernsfisis <nsfisis@gmail.com>2025-09-01 22:44:45 +0900
commit394899b2d7e75b7a922d3a402abc8f85a82b031c (patch)
tree66b441e538e12f456a84e6c22f1f7ca2c1e17407 /tests
parent27fc021e6771e404d01db447a1e5804911b4d6f9 (diff)
downloadducc-394899b2d7e75b7a922d3a402abc8f85a82b031c.tar.gz
ducc-394899b2d7e75b7a922d3a402abc8f85a82b031c.tar.zst
ducc-394899b2d7e75b7a922d3a402abc8f85a82b031c.zip
feat: support enum with explicit value
Diffstat (limited to 'tests')
-rw-r--r--tests/113.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/113.sh b/tests/113.sh
new file mode 100644
index 0000000..94e6e5f
--- /dev/null
+++ b/tests/113.sh
@@ -0,0 +1,26 @@
+cat <<'EOF' > expected
+10,11,20,21
+0,5,6
+EOF
+
+test_diff <<'EOF'
+int printf();
+
+enum E1 {
+ A = 10,
+ B,
+ C = 20,
+ D,
+};
+
+enum E2 {
+ E,
+ F = 5,
+ G
+};
+
+int main() {
+ printf("%d,%d,%d,%d\n", A, B, C, D);
+ printf("%d,%d,%d\n", E, F, G);
+}
+EOF