blob: 4106ec3b81a815e687121cb8101d1fdec557d14e [file] [log] [blame]
#define cvr const volatile restrict
_Static_assert([typeof((cvr int) 0)] == [int]);
_Static_assert([typeof((cvr int *) 0)] == [cvr int *]);
static int *function(volatile int x)
{
extern typeof((typeof(x)) (x)) y;
return &y;
}
/*
* check-name: unqual-cast
*/