xref: /llvm-project/clang/test/Sema/indirect-goto.c (revision 7068aa98412ade19a34b7ed126f4669f581b2311)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 struct c {int x;};
a(struct c x,long long y)4 int a(struct c x, long long y) {
5   void const* l1_ptr = &&l1;
6   goto *l1_ptr;
7 l1:
8   goto *x; // expected-error{{incompatible type}}
9   goto *y; // expected-error{{incompatible integer to pointer conversion}}
10 }
11 
12