blob: e06586cd43e32213868134d8881fc08844ae8dd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#define __unqual_typeof(x) typeof(((void)0, (x)))
int *foo(volatile int x);
int *foo(volatile int x)
{
extern __unqual_typeof(x) y;
return &y;
}
/*
* check-name: unqual-comma
* check-known-to-fail
*/
|