mirror of
https://github.com/opnsense/src.git
synced 2026-04-09 03:16:24 -04:00
15 lines
498 B
C++
15 lines
498 B
C++
void test(bool x) {
|
|
if (x) {}
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:2:7 %s | FileCheck %s
|
|
// CHECK: PREFERRED-TYPE: _Bool
|
|
|
|
while (x) {}
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:6:10 %s | FileCheck %s
|
|
|
|
for (; x;) {}
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:9:10 %s | FileCheck %s
|
|
|
|
// FIXME(ibiryukov): the condition in do-while is parsed as expression, so we
|
|
// fail to detect it should be converted to bool.
|
|
// do {} while (x);
|
|
}
|