summaryrefslogtreecommitdiff
path: root/test/SemaCXX/types_compatible_p.cpp
blob: 30b16006c685bbfc510dee81c581dc67d717e604 (plain)
1
2
3
4
5
// RUN: clang-cc -fsyntax-only -verify %s

bool f() {
  return __builtin_types_compatible_p(int, const int); // expected-error{{C++}}
}