diff options
author | bloodstalker <thabogre@gmail.com> | 2016-12-23 20:50:30 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-12-23 20:50:30 +0000 |
commit | 8f8a0e3b96ad8bc08c887f09eb48b10a2f8851dd (patch) | |
tree | f8455da4989f72f33e970ff7f6067781921d79b1 /test/testFuncs1.c | |
parent | added 5.1 (diff) | |
download | mutator-8f8a0e3b96ad8bc08c887f09eb48b10a2f8851dd.tar.gz mutator-8f8a0e3b96ad8bc08c887f09eb48b10a2f8851dd.zip |
added some tests and comments
Diffstat (limited to 'test/testFuncs1.c')
-rw-r--r-- | test/testFuncs1.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/testFuncs1.c b/test/testFuncs1.c index 50c5905..9af097c 100644 --- a/test/testFuncs1.c +++ b/test/testFuncs1.c @@ -15,6 +15,10 @@ typedef unsigned int ut_int;
typedef signed int t_int;
typedef unsigned char BYTE;
+/*5.3:clang doesnt allow typedef redifinition*/
+#if 0
+typedef const int dummytypedef;
+#endif
const unsigned int shift = 10U;
|