summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/performance-type-promotion-in-math-fn.cpp
blob: 9a6fcf9848d6b1c31fcfe801c3033c79abf6b207 (plain)
1
2
3
4
5
6
7
double acos(double);

void check_all_fns()
{
  float a;
  acos(a);
}