bolt/deps/llvm-18.1.8/clang/test/Sema/indirect-goto.c
2025-02-14 19:21:04 +01:00

11 lines
274 B
C

// RUN: %clang_cc1 -fsyntax-only -verify %s
struct c {int x;};
int a(struct c x, long long y) {
void const* l1_ptr = &&l1;
goto *l1_ptr;
l1:
goto *x; // expected-error{{incompatible type}}
goto *y; // expected-error{{incompatible integer to pointer conversion}}
}