brintos

brintos / llvm-project-archived public Read only

0
0
Text · 274 B · f21af4f Raw
12 lines · c
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3struct c {int x;};4int a(struct c x, long long y) {5  void const* l1_ptr = &&l1;6  goto *l1_ptr;7l1:8  goto *x; // expected-error{{incompatible type}}9  goto *y; // expected-error{{incompatible integer to pointer conversion}}10}11 12