summaryrefslogtreecommitdiff
path: root/Tests/CompileFeatures/cxx_decltype_auto.cpp
blob: 900bb6d7991a1caa714ae5b5f1d46220253334ee (plain)
1
2
3
4
5
6

int someFunc(int argc, char**)
{
  decltype(auto) i = argc;
  return 0;
}