summaryrefslogtreecommitdiff
path: root/clang/test/CodeCompletion/preferred-type.cpp
blob: 1c16ee0c581a54aecc735b995c369bd49f706696 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
void test(bool x) {
  if (x) {}
  // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):7 %s | FileCheck %s
  // CHECK: PREFERRED-TYPE: _Bool

  while (x) {}
  // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):10 %s | FileCheck %s

  for (; x;) {}
  // RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:%(line-1):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);
}