blob: 899ff2543fc0b3f6284b854abf88c6b7e6f74c1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
bug-2973.c
*/
#include <testfwk.h>
typedef int *foo_t;
void f(foo_t *const x)
{
*x = 0;
}
// nothing to run - bug is a compilation failure
void testBug (void)
{
}
|