blob: 35fb5e6315e2b688d100196e10d5066b51dc6376 [file] [log] [blame]
Eli Friedman33083822009-03-26 07:32:37 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
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