[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Sema / indirect-goto.c
blobf21af4f309c354a0745e01092bcdca7a0091cebd
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 struct c {int x;};
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}}