diff options
Diffstat (limited to 'clang/test/Sema/indirect-goto.c')
-rw-r--r-- | clang/test/Sema/indirect-goto.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/test/Sema/indirect-goto.c b/clang/test/Sema/indirect-goto.c new file mode 100644 index 0000000..4c1c6c3 --- /dev/null +++ b/clang/test/Sema/indirect-goto.c @@ -0,0 +1,11 @@ +// 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-warning{{incompatible integer to pointer conversion}} +} + |