From 8d4866160ef91084ea13b526694e56ce9c805dd2 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Mon, 11 May 2020 16:49:44 -0500 Subject: Fix #196 - allow remapping of types --- tests/include/tast2.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'tests/include') diff --git a/tests/include/tast2.h b/tests/include/tast2.h index 878a3a2..bbb3315 100644 --- a/tests/include/tast2.h +++ b/tests/include/tast2.h @@ -243,6 +243,12 @@ static inline int sitest1(int f1) { return f1 * 2; } +// Issue #196 +typedef int MyInt; +struct TestMyInt { + MyInt f1; +}; + // DUPLICATES @@ -439,6 +445,12 @@ static inline int sitest1(int f1) { return f1 * 2; } +// Issue #196 +typedef int MyInt; +struct TestMyInt { + MyInt f1; +}; + #endif -- cgit v1.2.3