Imported Upstream version 2.9.0
[debian/cc1111] / support / regression / tests / bug-920866.c
1 /* replace optimized parameter tree returned by decorateType */
2
3 #include <testfwk.h>
4
5 char
6 foo(char c)
7 {
8   return c;
9 }
10
11 void
12 testReplaceParameterTree(void)
13 {
14   ASSERT(foo (0 ? 1 : 2) == 2);
15 }