blob: 134ccd8a707600a7d2da32b8e081b591ff23fe79 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Eli Friedman33083822009-03-26 07:32:37 +00002
3struct c {int x;};
4int a(struct c x, long long y) {
5 goto *x; // expected-error{{incompatible type}}
6 goto *y; // expected-warning{{incompatible integer to pointer conversion}}
7}
8