634790f4bd
* typeck.c (qualify_type): Remove. (composite_pointer_type): Fix handling of conversions to `cv void*'. From-SVN: r36889
11 lines
156 B
C
11 lines
156 B
C
// Build don't link:
|
|
// Origin: Mark Mitchell <mark@codesourcery.com>
|
|
|
|
int i = 3;
|
|
void *pv=&i;
|
|
const void* pcv=&i;
|
|
int main()
|
|
{
|
|
pcv = 0 ? pv : pcv;
|
|
}
|