Message ID | 20130906145320.GA26549@leaf (mailing list archive) |
---|---|
State | Rejected, archived |
Headers | show |
diff --git a/validation/typeof-const.c b/validation/typeof-const.c new file mode 100644 index 0000000..d02d39a --- /dev/null +++ b/validation/typeof-const.c @@ -0,0 +1,9 @@ +void f(void); +void f(void) +{ + const int *pc; + typeof(*pc) *pc2 = pc; +} +/* + * check-name: typeof-const.c + */