summaryrefslogtreecommitdiff
path: root/Tests/CxxDialect/use_constexpr_and_typeof.cxx
blob: af217b67e37f9cb10de772f548f8af8b4a9de05a (plain)
1
2
3
4
5
6
7
8
9
10
11

constexpr int foo()
{
  return 0;
}

int main(int argc, char**)
{
  typeof(argc) ret = foo();
  return ret;
}