blob: 3b15a726178b5579b4ce24ba6c8a78b39eb89c27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* replace optimized parameter tree returned by decorateType */
#include <testfwk.h>
char
foo(char c)
{
return c;
}
void
testReplaceParameterTree(void)
{
ASSERT(foo (0 ? 1 : 2) == 2);
}
|