mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
6 lines
173 B
C
6 lines
173 B
C
// RUN: %clang_cc1 -fsyntax-only %s -verify -fblocks
|
|
|
|
int j;
|
|
void foo() {
|
|
^ (void) { if (j) return 1; }(); // expected-error {{control may reach end of non-void block}}
|
|
}
|