From 298977906d005ec026778286591f5843406291b7 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 4 May 2025 14:29:07 +0900 Subject: support pointer types --- tests/021.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tests/021.sh (limited to 'tests') diff --git a/tests/021.sh b/tests/021.sh new file mode 100644 index 0000000..2f225e1 --- /dev/null +++ b/tests/021.sh @@ -0,0 +1,24 @@ +set -e + +cat <<'EOF' > expected +EOF +bash ../../test_diff.sh <<'EOF' +int main() { + int a1; + int* a2; + char a3; + char* a4; + long a5; + long* a6; + void* a8; + int** a10; + char** a12; + long** a14; + void** a16; + int*** a18; + char*** a20; + long*** a22; + void*** a24; + return 0; +} +EOF -- cgit v1.2.3-70-g09d2